COSMO AI.
Work in Progress.

OpenAI-compatible API wrapper for all COSMO projects

Quick Start

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 "api-key: $AI_API_KEY" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }'

Available Models