mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-08-28 11:07:19 +08:00
e46d6feaea
- release_radar_agent/radar.py: _extract_version returned matches[-1], the exclusive upper bound of a version range (e.g. '>=1.10.0,<2.0.0' -> '2.0.0'), so build_release_candidates saw no delta and suppressed every alert. Use matches[0] (the pinned/lower bound). Exact pins/tags give a single match, so the 5 shipped unit tests still pass. - customer_support_voice_agent.py: the Text-to-Speech Agent is invoked via Runner.run (chat endpoint) but was built with model='gpt-4o-mini-tts', a speech-only model, so every query errored. Use 'gpt-4o' (matching the sibling voice_rag_openaisdk app); the real speech call at line 288 keeps gpt-4o-mini-tts. Fixes #1019 Co-authored-by: thejesh23 <thejesh23@users.noreply.github.com>