mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-07-19 03:05:23 -05:00
[GH-ISSUE #258] Errors while trying to run the AI Travel Agent with MCP example app #9648
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kabeza on GitHub (Jun 24, 2025).
Original GitHub issue: https://github.com/Shubhamsaboo/awesome-llm-apps/issues/258
Hi
I've followed step by step (successfuly, without errors) the tutorial
https://www.theunwindai.com/p/build-an-ai-travel-planning-agent-with-mcp
But now I'm having issues while trying to run the app.py with streamlit run app.py command
21 │ from openai.types.chat import ChatCompletionAudio
ImportError: cannot import name 'ChatCompletionAudio' from 'openai.types.chat'
When I execute pip list | grep openai I get that it is successfully installed
openai 1.12.0
What could be wrong?
Thanks a lot for any guidance about this
@Madhuvod commented on GitHub (Jul 12, 2025):
The issue is that agno==1.2.13 is not compatible with openai==1.12.0. The agno library is trying to import ChatCompletionAudio which doesn't exist in the current version of the OpenAI library. needed to change the library versions in requirements.txt - https://github.com/Shubhamsaboo/awesome-llm-apps/pull/277
@kabeza commented on GitHub (Jul 14, 2025):
Thanks @Madhuvod now I could run the app, fill the form, etc. but now I'm getting this (in console) when submitting web form:
ERROR Failed to get MCP tools: Timed out while waiting for response to ClientRequest. Waited 5.0 seconds.Is there a way to modify the code somewhere and increase this default 5 seconds timeout?