Portal by quivly.ai

Single API Interface for all LLM providers and models. Connect with multiple LLM providers and models with single, developer-friendly APIs.

Brought to you by Quivly.ai

v0.1.1

Added cohere support in portal

What's new

  • Portal now supports api requests for cohere chat api. Just replace api.cohere.ai with gateway.quivly.ai
curl --location 'http://gateway.quivly.ai/v1/chat' \
--header 'x-provider: cohere' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'Authorization: Bearer <cohere-api-key>' \
--data '{
    "chat_history": [
        {
            "role": "USER",
            "message": "Who discovered gravity?"
        }
    ],
    "message": "What year was he born?",
    "connectors": []
}'

v0.1.0

Portal is alive and breathing 🚀

What's new

The first deployment of our AI Gateway - Portal: https://gateway.quivly.ai/

  • Supports all non-streaming use cases for OpenAI endpoints. Just replace api.openai.com with gateway.quivly.ai
curl --location 'https://gateway.quivly.ai/v1/chat/completions' \
--header 'x-provider: openai' \
--header 'Authorization: Bearer <openai-key>' \
--header 'Content-Type: application/json' \
--data '{
    "model": "gpt-3.5-turbo",
    "messages": [
        {
            "role": "system",
            "content": "You are a poetic assistant, skilled in explaining complex programming concepts with creative flair."
        },
        {
            "role": "user",
            "content": "Compose a poem that explains the concept of recursion in programming. Please response under 150 words"
        }
    ]
}'