Stability-AI / FastChat

An open platform for training, serving, and evaluating large language models. Release repo for Vicuna and Chatbot Arena.
Apache License 2.0
42 stars 21 forks source link

Downgrading OpenAI to Version 0.28 or Below for Compatibility #18

Open ryan-minato opened 1 month ago

ryan-minato commented 1 month ago

OpenAI has updated their API, and the openai.error.OpenAIError no longer exists. You need to modify it to openai.OpenAIError for the code to work. However, making this change will trigger a warning, which recommend to downgrade the version to below 0.28.

AttributeError: module ‘openai’ has no attribute ‘error’

ryan-minato commented 1 month ago

For now, running this commans is a temporary solution to this issue.

pip install "openai==0.28"