Update app.py
Browse files
app.py
CHANGED
|
@@ -163,11 +163,11 @@ agent = Agent(
|
|
| 163 |
# Link the agent to the knowledge base created earlier.
|
| 164 |
knowledge=knowledge,
|
| 165 |
# Automatically add the current date and time to the agent's context.
|
| 166 |
-
add_datetime_to_context=True,
|
| 167 |
# Automatically add the user's location to the context (if available).
|
| 168 |
-
add_location_to_context=True,
|
| 169 |
# Enable the agent to search its knowledge base by default.
|
| 170 |
-
search_knowledge=True,
|
| 171 |
# Equip the agent with tools, in this case, the ability to search the web using DuckDuckGo.
|
| 172 |
tools=[DuckDuckGoTools()],
|
| 173 |
# Enable markdown formatting in the agent's output.
|
|
|
|
| 163 |
# Link the agent to the knowledge base created earlier.
|
| 164 |
knowledge=knowledge,
|
| 165 |
# Automatically add the current date and time to the agent's context.
|
| 166 |
+
#add_datetime_to_context=True,
|
| 167 |
# Automatically add the user's location to the context (if available).
|
| 168 |
+
#add_location_to_context=True,
|
| 169 |
# Enable the agent to search its knowledge base by default.
|
| 170 |
+
#search_knowledge=True,
|
| 171 |
# Equip the agent with tools, in this case, the ability to search the web using DuckDuckGo.
|
| 172 |
tools=[DuckDuckGoTools()],
|
| 173 |
# Enable markdown formatting in the agent's output.
|