mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-05 13:20:39 +08:00
feat: add support for Mistral and Codestral models
This commit is contained in:
@ -97,6 +97,14 @@ class LiteLLMAIHandler(BaseAiHandler):
|
||||
if get_settings().get("DEEPINFRA.KEY", None):
|
||||
os.environ['DEEPINFRA_API_KEY'] = get_settings().get("DEEPINFRA.KEY")
|
||||
|
||||
# Support mistral models
|
||||
if get_settings().get("MISTRAL.KEY", None):
|
||||
os.environ["MISTRAL_API_KEY"] = get_settings().get("MISTRAL.KEY")
|
||||
|
||||
# Support codestral models
|
||||
if get_settings().get("CODESTRAL.KEY", None):
|
||||
os.environ["CODESTRAL_API_KEY"] = get_settings().get("CODESTRAL.KEY")
|
||||
|
||||
# Check for Azure AD configuration
|
||||
if get_settings().get("AZURE_AD.CLIENT_ID", None):
|
||||
self.azure = True
|
||||
|
Reference in New Issue
Block a user