Fix typo in error message (#2622)

fix_agent_callbacks
Jan 1 year ago committed by GitHub
parent 9aed565f13
commit 166624d005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -223,7 +223,7 @@ class BaseOpenAI(BaseLLM):
except ImportError:
raise ValueError(
"Could not import openai python package. "
"Please it install it with `pip install openai`."
"Please install it with `pip install openai`."
)
if values["streaming"] and values["n"] > 1:
raise ValueError("Cannot stream results when n > 1.")

Loading…
Cancel
Save