Skip to content

Commit 23a3845

Browse files
committed
remove prints
1 parent 3d5950b commit 23a3845

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/agents/informational_agent/informational_agent.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ def summarize_conversation(self, state: State, config: RunnableConfig) -> dict:
124124
# STEP 1: Summarize the conversation
125125
messages = state["messages"][:-1] + [HumanMessage(content=summary_message)]
126126
valid_messages = self.check_for_valid_messages(messages)
127-
print(f"valid_messages SUMMARY:: {valid_messages}")
128127
summary_response = self.summarisation_llm.invoke(valid_messages)
129128

130129
# STEP 2: Analyze the conversational style
@@ -194,8 +193,6 @@ def invoke_informational_agent(query: str, conversation_history: list, summary:
194193
summary = agent.get_summary()
195194
conversationalStyle = agent.get_conversational_style()
196195

197-
print(f'SUMMARY: {summary}')
198-
199196
return {
200197
"input": query,
201198
"output": pretty_printed_response,

0 commit comments

Comments
 (0)