gabykim commited on
Commit
c7e758e
·
1 Parent(s): 8523f06

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
- result, _history = await chat_graph.run(
198
- PolishQuestionNode(),
199
- state=state,
200
- deps=deps
201
- )
202
-
203
- return result
 
 
 
 
 
 
 
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