From 7a52807cb1180bb45d4186780a379686dc6c2972 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 13 Oct 2023 22:21:52 -0600 Subject: ooga chaga --- speller_agent.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'speller_agent.py') diff --git a/speller_agent.py b/speller_agent.py index 9328e88..ff25915 100644 --- a/speller_agent.py +++ b/speller_agent.py @@ -21,6 +21,7 @@ class SpellerAgent(RespondAgent[SpellerAgentConfig]): conversation_id: str, is_interrupt: bool = False, ) -> Tuple[Optional[str], bool]: + print("SpellerAgent: ", human_input) return "".join(c + " " for c in human_input), False @@ -28,6 +29,7 @@ class SpellerAgentFactory(AgentFactory): def create_agent( self, agent_config: AgentConfig, logger: Optional[logging.Logger] = None ) -> BaseAgent: + print("Setting up agent") if agent_config.type == AgentType.CHAT_GPT: return ChatGPTAgent( agent_config=typing.cast(ChatGPTAgentConfig, agent_config) -- cgit v1.2.3