Skip to content

Commit

Permalink
Merge pull request #93 from whyXVI/main
Browse files Browse the repository at this point in the history
Corrected liteLLM model providers
  • Loading branch information
rashadphz authored Sep 27, 2024
2 parents 883003f + c0e50de commit a9dd493
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class ChatModel(str, Enum):


model_mappings: dict[ChatModel, str] = {
ChatModel.GPT_4o: "gpt-4o",
ChatModel.GPT_4o_mini: "gpt-4o-mini",
ChatModel.GPT_4o: "openai/gpt-4o",
ChatModel.GPT_4o_mini: "openai/gpt-4o-mini",
ChatModel.LLAMA_3_70B: "groq/llama-3.1-70b-versatile",
ChatModel.LOCAL_LLAMA_3: "ollama_chat/llama3.1",
ChatModel.LOCAL_GEMMA: "ollama_chat/gemma",
Expand Down

0 comments on commit a9dd493

Please sign in to comment.