Spaces:
Sleeping
Sleeping
lowered the model
Browse files
app.py
CHANGED
|
@@ -15,7 +15,8 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|
|
| 15 |
class BasicAgent:
|
| 16 |
def __init__(self):
|
| 17 |
print("Initializing the BasicAgent")
|
| 18 |
-
model = OpenAIServerModel(model_id="gpt-4o")
|
|
|
|
| 19 |
print("GPT-4o LLM is instantiated")
|
| 20 |
# Initialize the search tool
|
| 21 |
search_tool = DuckDuckGoSearchTool()
|
|
|
|
| 15 |
class BasicAgent:
|
| 16 |
def __init__(self):
|
| 17 |
print("Initializing the BasicAgent")
|
| 18 |
+
# model = OpenAIServerModel(model_id="gpt-4o")
|
| 19 |
+
model = OpenAIServerModel(model_id="gpt-3.5-turbo")
|
| 20 |
print("GPT-4o LLM is instantiated")
|
| 21 |
# Initialize the search tool
|
| 22 |
search_tool = DuckDuckGoSearchTool()
|