susmitsil commited on
Commit
0e2b5c0
·
verified ·
1 Parent(s): ea20a55

lowered the model

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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()