mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-03-12 18:01:30 +08:00
Replace all direct openai.error.* usages with the openai_compat compatibility layer to support openai>=1.0. Affected files: - models/chatgpt/chat_gpt_bot.py: fix isinstance checks (RateLimitError, Timeout, APIError, APIConnectionError) - models/openai/open_ai_bot.py: replace import + fix isinstance checks - models/ali/ali_qwen_bot.py: replace import + fix isinstance checks - models/modelscope/modelscope_bot.py: remove unused openai.error import The openai_compat layer (models/openai/openai_compat.py) already handles both openai<1.0 and openai>=1.0 gracefully. This completes the migration started in the existing PR #2688.