Spaces:
Sleeping
Sleeping
printed kwargs (#20)
Browse files- printed kwargs (925a7d671ba013be81ef673549b26ab97410c9a8)
app.py
CHANGED
|
@@ -80,6 +80,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
| 80 |
class MyAgent(MultiStepAgent): # defining agent flow
|
| 81 |
|
| 82 |
def step(self, memory_step: ActionStep, location: str) -> Union[None, Any]: # Add location parameter
|
|
|
|
| 83 |
# 1. Call the tools
|
| 84 |
currency_info = get_currency_from_timezone(location)
|
| 85 |
time_info = get_current_time_in_timezone(location)
|
|
|
|
| 80 |
class MyAgent(MultiStepAgent): # defining agent flow
|
| 81 |
|
| 82 |
def step(self, memory_step: ActionStep, location: str) -> Union[None, Any]: # Add location parameter
|
| 83 |
+
print(kwargs)
|
| 84 |
# 1. Call the tools
|
| 85 |
currency_info = get_currency_from_timezone(location)
|
| 86 |
time_info = get_current_time_in_timezone(location)
|