diff --git a/litellm/llms/openai_like/providers.json b/litellm/llms/openai_like/providers.json index fe10293c420..97e0717821b 100644 --- a/litellm/llms/openai_like/providers.json +++ b/litellm/llms/openai_like/providers.json @@ -180,6 +180,12 @@ "api_key_env": "COGNITION_API_KEY", "api_base_env": "COGNITION_API_BASE" }, + "tiyuvta": { + "base_url": "https://api.tiyuvta.ai/v1", + "api_key_env": "TIYUVTA_API_KEY", + "api_base_env": "TIYUVTA_API_BASE", + "supported_endpoints": ["/v1/chat/completions", "/v1/completions"] + }, "pinstripes": { "base_url": "https://pinstripes.io/v1", "api_key_env": "PINSTRIPES_API_KEY", diff --git a/provider_endpoints_support.json b/provider_endpoints_support.json index c71f4a82a4a..64c9c63d369 100644 --- a/provider_endpoints_support.json +++ b/provider_endpoints_support.json @@ -2438,6 +2438,23 @@ "interactions": true } }, + "tiyuvta": { + "display_name": "tiyuvta (`tiyuvta`)", + "url": "https://inference.tiyuvta.ai/docs", + "endpoints": { + "chat_completions": true, + "messages": true, + "responses": true, + "embeddings": false, + "image_generations": false, + "audio_transcriptions": false, + "audio_speech": false, + "moderations": false, + "batches": false, + "rerank": false, + "a2a": false + } + }, "together_ai": { "display_name": "Together AI (`together_ai`)", "url": "https://docs.litellm.ai/docs/providers/togetherai",