We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In LLM 03, we call models that have now been deprecated by OpanAI so that the commands fail when we run them.
This is the case in the demo where we define a call to text-babbage-001 which OpenAI says should now be replaced with gpt-3.5-turbo-instruct.
text-babbage-001
gpt-3.5-turbo-instruct
Further down in the Agents section, we use
from langchain.llms import OpenAI llm = OpenAI()
which defaults to calling text-davinci-003 which is also deprecated and should be replaced by gpt-3.5-turbo-instruct.
text-davinci-003
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In LLM 03, we call models that have now been deprecated by OpanAI so that the commands fail when we run them.
This is the case in the demo where we define a call to
text-babbage-001
which OpenAI says should now be replaced withgpt-3.5-turbo-instruct
.Further down in the Agents section, we use
which defaults to calling
text-davinci-003
which is also deprecated and should be replaced bygpt-3.5-turbo-instruct
.The text was updated successfully, but these errors were encountered: