Update app.py
Browse files
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 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
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,
|