Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -206,9 +206,9 @@ async def handle_message(message: cl.Message):
|
|
206 |
|
207 |
await cl.Message(content=table).send()
|
208 |
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
|
213 |
else:
|
214 |
response = await llm_chain.ainvoke(
|
|
|
206 |
|
207 |
await cl.Message(content=table).send()
|
208 |
|
209 |
+
except Exception as e:
|
210 |
+
error_msg = f"Error: Could not parse the booking information. Details: {str(e)}"
|
211 |
+
await cl.Message(error_msg).send()
|
212 |
|
213 |
else:
|
214 |
response = await llm_chain.ainvoke(
|