Merge pull request #1689 from ScriptScientist/main

feat: novita llms support
This commit is contained in:
Alex
2025-03-12 21:03:09 +00:00
committed by GitHub
4 changed files with 44 additions and 2 deletions

View File

@@ -42,6 +42,8 @@ elif settings.LLM_NAME == "anthropic":
gpt_model = "claude-2"
elif settings.LLM_NAME == "groq":
gpt_model = "llama3-8b-8192"
elif settings.LLM_NAME == "novita":
gpt_model = "deepseek/deepseek-r1"
if settings.MODEL_NAME: # in case there is particular model name configured
gpt_model = settings.MODEL_NAME