Skip to content

Commit 6b57e49

Browse files
committed
fix missing arg
1 parent c12e126 commit 6b57e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def handle_webhook():
193193

194194
# Fetch the conversation and generate an LLM answer for the user
195195
logger.info(f"Detected a user reply in conversation {conversation_id}; fetching an answer from LLM...")
196-
answer_intercom_conversation(app.rag_system, conversation_id)
196+
answer_intercom_conversation(app.rag_system, conversation_id, topic)
197197

198198
else:
199199
logger.info(f"Received webhook for unsupported topic: {topic}; no action taken.")

0 commit comments

Comments
 (0)