Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -87,18 +87,12 @@ def update_db(user_id, conversation_id, message, response):
|
|
87 |
|
88 |
|
89 |
ModelID = Literal[
|
90 |
-
"
|
91 |
-
"
|
92 |
-
"
|
93 |
-
"
|
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(
|