adithyagv commited on
Commit
0388d42
·
verified ·
1 Parent(s): 4f7c645
Files changed (1) hide show
  1. app.py +1 -0
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)