Все модели
OpenAI

gpt-5.6-luna

other · chat

Контекст

1050K

Input $/M

$1.00

Output $/M

$6.00

Провайдер

other

👁 Vision⚡ Function calling📄 PDF input💾 Prompt caching📋 Structured output🔍 Web search

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

Python
from openai import OpenAI

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

response = client.chat.completions.create(
    model="gpt-5.6-luna",
    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": "gpt-5.6-luna",
    "messages": [{"role": "user", "content": "Привет!"}],
    "max_tokens": 100
  }'

Начните использовать gpt-5.6-luna

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

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