patricksamuel commited on
Commit
4b9f723
·
verified ·
1 Parent(s): e319354

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -139,15 +139,15 @@ Follow this cycle until you find the answer:
139
  - Q: What are the top 3 most populous US states? → California, Texas, Florida
140
  """
141
 
142
- my_agent = Agent(
143
- name="Expert Question Answering Agent",
144
- instructions=instructions,
145
- tools = [
146
- web_search,
147
- visit_website
148
- ],
149
- model="gpt-4o-mini"
150
- )
151
 
152
  result = Runner.run_sync(
153
  my_agent,
 
139
  - Q: What are the top 3 most populous US states? → California, Texas, Florida
140
  """
141
 
142
+ my_agent = Agent(
143
+ name="Expert Question Answering Agent",
144
+ instructions=instructions,
145
+ tools = [
146
+ web_search,
147
+ visit_website
148
+ ],
149
+ model="gpt-4o-mini"
150
+ )
151
 
152
  result = Runner.run_sync(
153
  my_agent,