mshumer / gpt-author

MIT License
2.48k stars 360 forks source link

Error #37

Open Alakirhell opened 6 months ago

Alakirhell commented 6 months ago

APIRemovedInV1 Traceback (most recent call last) in <cell line: 5>() 3 num_chapters = 10 4 writing_style = "Clear and easily understandable, similar to a young adult novel. Lots of dialogue." ----> 5 novel, title, chapters, chapter_titles = write_fantasy_novel(prompt, num_chapters, writing_style, claude_true) 6 7 # Replace chapter descriptions with body text in chapter_titles

2 frames in write_fantasy_novel(prompt, num_chapters, writing_style, claude_true) 250 251 def write_fantasy_novel(prompt, num_chapters, writing_style, claude_true=False): --> 252 plots = generate_plots(prompt) 253 print('generated plots') 254

in generate_plots(prompt) 43 44 def generate_plots(prompt): ---> 45 response = openai.ChatCompletion.create( 46 model="gpt-4", 47 messages=[

/usr/local/lib/python3.10/dist-packages/openai/lib/_old_api.py in call(self, *_args, *_kwargs) 37 38 def call(self, _args: Any, **_kwargs: Any) -> Any: ---> 39 raise APIRemovedInV1(symbol=self._symbol) 40 41

APIRemovedInV1:

You tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API.

You can run openai migrate to automatically upgrade your codebase to use the 1.0.0 interface.

Alternatively, you can pin your installation to the old version, e.g. pip install openai==0.28

A detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742 how to fix this