-
Notifications
You must be signed in to change notification settings - Fork 4
feat(langchain): Add Google Gemini , Vertex AI and Ollama model support #30
New issue
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
base: main
Are you sure you want to change the base?
Changes from all commits
2294d7b
a1ec3b7
3ba3efd
f0f168e
f1b5511
85a487c
24659e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's add an error test for Gemini also.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Error test for gemini is already added before. (332 - 341 Lines) |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -57,7 +57,7 @@ def validate_type_fields(self) -> Self: | |||||
|
|
||||||
|
|
||||||
| class Model(BaseModel): | ||||||
| model_config = ConfigDict(extra="forbid") | ||||||
| model_config = ConfigDict(extra="allow") | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep Changing Suggested change class Model(BaseModel):
- model_config = ConfigDict(extra="allow")
+ model_config = ConfigDict(extra="forbid")📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
|
|
||||||
| name: str | None = None | ||||||
| provider: str | None = None | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I added a new line