From b7c53a00ee032ca78292fff36116a2a8d45f50d6 Mon Sep 17 00:00:00 2001 From: gbattistel Date: Wed, 29 Apr 2026 09:26:01 -0400 Subject: [PATCH] fix: register Telnyx as openai-compatible provider --- litellm/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/constants.py b/litellm/constants.py index fc9f5730cdf..a96a416e019 100644 --- a/litellm/constants.py +++ b/litellm/constants.py @@ -751,6 +751,7 @@ openai_compatible_endpoints: List = [ "https://api.moonshot.ai/v1", "https://api.publicai.co/v1", "https://api.synthetic.new/openai/v1", + "https://api.telnyx.com/v2/ai", "https://api.stima.tech/v1", "https://nano-gpt.com/api/v1", "https://api.poe.com/v1", @@ -800,6 +801,7 @@ openai_compatible_providers: List = [ "meta_llama", "publicai", # PublicAI - JSON-configured provider "synthetic", # Synthetic - JSON-configured provider + "telnyx", # Telnyx - JSON-configured provider "apertis", # Apertis - JSON-configured provider "nano-gpt", # Nano-GPT - JSON-configured provider "poe", # Poe - JSON-configured provider