pvanand commited on
Commit
b3310f3
·
verified ·
1 Parent(s): e577d93

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -11
main.py CHANGED
@@ -87,18 +87,12 @@ def update_db(user_id, conversation_id, message, response):
87
 
88
 
89
  ModelID = Literal[
90
- "openai/gpt-4o-mini",
91
- "openai/chatgpt-4o-latest",
92
- "deepseek/deepseek-chat",
93
- "anthropic/claude-3.5-sonnet",
94
- "anthropic/claude-3-haiku",
95
- "meta-llama/llama-3.3-70b-instruct",
96
- "google/gemini-2.0-flash-exp:free",
97
- "google/gemini-flash-1.5",
98
- "meta-llama/llama-3-70b-instruct",
99
- "meta-llama/llama-3-8b-instruct",
100
-
101
  ]
 
102
  class FollowupQueryModel(BaseModel):
103
  query: str = Field(..., description="User's query for the followup agent")
104
  model_id: ModelID = Field(
 
87
 
88
 
89
  ModelID = Literal[
90
+ "anthropic.claude-3-sonnet-20240229-v1:0",
91
+ "anthropic.claude-3-haiku-20240307-v1:0",
92
+ "meta.llama3-8b-instruct-v1:0",
93
+ "meta.llama3-70b-instruct-v1:0"
 
 
 
 
 
 
 
94
  ]
95
+
96
  class FollowupQueryModel(BaseModel):
97
  query: str = Field(..., description="User's query for the followup agent")
98
  model_id: ModelID = Field(