Models · Hugging Face

Hugging Face available models

The Hugging Face models routable through this free, OpenAI-compatible gateway, with the exact ids you can pin. Hugging Face runs a permanent free tier.

Live right now 2 models free tier
Model id Pin it as
meta-llama/Llama-3.3-70B-Instruct huggingface/meta-llama/Llama-3.3-70B-Instruct
Qwen/Qwen2.5-72B-Instruct huggingface/Qwen/Qwen2.5-72B-Instruct

The first id listed is what "model": "auto" reaches for on this provider. Availability changes, so read the live list with GET /api/v1/models before hardcoding.

Calling Hugging Face

curl https://dreamprompting.com/api/v1/chat/completions \
  -H "Authorization: Bearer YOUR_FREE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "huggingface/meta-llama/Llama-3.3-70B-Instruct",
    "messages": [{"role": "user", "content": "Hello."}]
  }'

Get the key on the account page with a Google sign-in and no credit card. Drop the provider prefix and send "model": "auto" to let the gateway pick a healthy provider instead, which is the better default when you care more about the answer arriving than about which company served it. Full parameters are in the API reference.

Other providers

Looking for the wider landscape rather than what is callable here? See all AI models for the full 279-model index by lab.