openai/gpt-4.1-nano
Smallest GPT-4.1 variant. Ideal for classification and triage.
OpenAI-compatible — point any OpenAI SDK at our base URL and use the model id above.
curl https://trismegistus.app/api/v1/chat/completions \
-H "Authorization: Bearer $TRISMEGISTUS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4.1-nano",
"messages": [{"role": "user", "content": "Hello!"}]
}'