Все модели
O

free-auto

openrouter · chat

Контекст

1049K

Input $/M

Free

Output $/M

Free

Провайдер

openrouter

⚡ Function calling💾 Prompt caching

Быстрый старт

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.lqd.llc/v1",
    api_key="sk-ваш-ключ"
)

response = client.chat.completions.create(
    model="free-auto",
    messages=[{"role": "user", "content": "Привет!"}],
    max_tokens=100
)

print(response.choices[0].message.content)
cURL
curl https://api.lqd.llc/v1/chat/completions \
  -H "Authorization: Bearer sk-ваш-ключ" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "free-auto",
    "messages": [{"role": "user", "content": "Привет!"}],
    "max_tokens": 100
  }'

Начните использовать free-auto

Зарегистрируйтесь и получите доступ к бесплатным моделям

Начать бесплатно