vocode-python/vocode/turn_based/agent/echo_agent.py
2023-03-20 15:37:23 -07:00

6 lines
155 B
Python

from vocode.turn_based.agent.base_agent import BaseAgent
class EchoAgent(BaseAgent):
def respond(self, human_input: str):
return human_input