pratikshahp commited on
Commit
d8084b5
·
verified ·
1 Parent(s): 429e7df

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +4 -0
agent.py CHANGED
@@ -125,6 +125,10 @@ class Agent:
125
  """Clear the conversation history."""
126
  self._history = []
127
 
 
 
 
 
128
  def available_strategies(self) -> List[str]:
129
  """Return a list of available strategy names."""
130
  return StrategyFactory.available_strategies()
 
125
  """Clear the conversation history."""
126
  self._history = []
127
 
128
+ def chat(self, user_input: str) -> str:
129
+ """Process user input and return the assistant's response."""
130
+ return self.execute(user_input)
131
+
132
  def available_strategies(self) -> List[str]:
133
  """Return a list of available strategy names."""
134
  return StrategyFactory.available_strategies()