#!/usr/bin/env python3
"""arq-huggingface — huggingface LLM bridge (OpenAI-compatible API).

Auto-generated thin wrapper using _arq_openai_compatible shared skeleton.
v0 verbs:
  arq-huggingface models list
"""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent))
from _arq_openai_compatible import make_main

main = make_main(
    provider="huggingface",
    api_base="https://router.huggingface.co/v1",
    sops_path='["huggingface"]["huggingface_api_key"]',
    env_var="HUGGINGFACE_API_KEY",
)

if __name__ == "__main__":
    sys.exit(main())
