chat graph error handling
Browse files
src/know_lang_bot/chat_bot/chat_graph.py
CHANGED
@@ -194,10 +194,16 @@ async def process_chat(
|
|
194 |
state = ChatGraphState(original_question=question)
|
195 |
deps = ChatGraphDeps(collection=collection, config=config)
|
196 |
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
state = ChatGraphState(original_question=question)
|
195 |
deps = ChatGraphDeps(collection=collection, config=config)
|
196 |
|
197 |
+
try:
|
198 |
+
result, _history = await chat_graph.run(
|
199 |
+
PolishQuestionNode(),
|
200 |
+
state=state,
|
201 |
+
deps=deps
|
202 |
+
)
|
203 |
+
except Exception as e:
|
204 |
+
LOG.error(f"Error processing chat in graph: {e}")
|
205 |
+
result = ChatResult(
|
206 |
+
answer="I encountered an error processing your question. Please try again."
|
207 |
+
)
|
208 |
+
finally:
|
209 |
+
return result
|