feat: add openai compatible support

This commit is contained in:
LUIS NOVO 2025-07-27 22:30:32 -03:00
parent 929cd262a6
commit 6440beb089

View file

@ -58,7 +58,9 @@ def check_available_providers():
)
provider_status["mistral"] = os.environ.get("MISTRAL_API_KEY") is not None
provider_status["deepseek"] = os.environ.get("DEEPSEEK_API_KEY") is not None
provider_status["openai-compatible"] = (
os.environ.get("OPENAI_COMPATIBLE_BASE_URL") is not None
)
available_providers = [k for k, v in provider_status.items() if v]
unavailable_providers = [k for k, v in provider_status.items() if not v]