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
Hi.
For the ChatGoogleGenerativeAI, we pass the following paramters:
chat = ChatGoogleGenerativeAI( google_api_key=api_key, max_tokens=max_tokens, model=model, )
However, for openai and antrhopic, we use model_name and not model:
model_name
model
chat = ChatAnthropic( temperature=0, anthropic_api_key=api_key, model_name=model, ) chat = ChatOpenAI( openai_api_key=api_key, max_tokens=max_tokens, model_name=model, )
Can we make the interface of chat objects consistent across providers? We can add a parameter model_name and deprecate model going forward.
The text was updated successfully, but these errors were encountered:
There is already a pr that can solve this: #81
Sorry, something went wrong.
No branches or pull requests
Hi.
For the ChatGoogleGenerativeAI, we pass the following paramters:
However, for openai and antrhopic, we use
model_name
and notmodel
:Can we make the interface of chat objects consistent across providers?
We can add a parameter
model_name
and deprecatemodel
going forward.The text was updated successfully, but these errors were encountered: