Advertisement
Inflection 3 Productivity is optimized for following instructions. It is better for tasks requiring JSON output or precise adherence to provided guidelines. It has access to recent news. For emotional...
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="inflection/inflection-3-productivity",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)