We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c20539 commit f81314dCopy full SHA for f81314d
README.md
@@ -90,7 +90,7 @@ toolkit.
90
```py
91
from langchain_google_vertexai import ChatVertexAI
92
93
-model = ChatVertexAI(model="gemini-1.5-flash-001")
+model = ChatVertexAI(model="gemini-1.5-pro-002")
94
95
# Initialize agent with tools
96
agent = model.bind_tools(tools)
@@ -123,7 +123,7 @@ def call_model(state: MessagesState):
123
# We return a list, because this will get added to the existing list
124
return {"messages": [response]}
125
126
127
builder = StateGraph(MessagesState)
128
tool_node = ToolNode(tools)
129
0 commit comments