ai.cosmoconsult.com is COSMO CONSULT's internal AI platform, designed to help employees build and test AI-powered apps without needing Azure or OpenAI accounts. It's GDPR-compliant and easy to use. Ideal for developers who want to experiment or use AI features quickly and securely within their own tools.
Get started with our OpenAI-compatible API using your preferred method
curl https://apis.ai.cosmoconsult.com/openai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $AI_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}'