ChatGPT-API-Basics
ChatGPT-API-Basics copied to clipboard
The code Fails With Error
Hi There,
I have tried several options to resolve the code failure (including using ChatGPT). Running the code as is I get the error:
AttributeError: module 'openai' has no attribute 'ChatCompletion'
Essentailly ChatGPT says that I should use:
completion = openai.Completion.create(
But that doesn't work either.
I then asked for more help:
It finaaly suggsted:
But that didn't work either.
Any suggetsions?
The issue was caused by me using openai v0.8. I upgraded to the latest version which solved the problem.
The issue was caused by me using openai v0.8. I upgraded to the latest version which solved the problem.
You might want to refer to the pull request so it always get the latest version of the library. Cheers