6 lines
155 B
Python
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
|