Skip to content

Commit 23632cf

Browse files
authored
Merge branch 'main' into main
2 parents 1bc9205 + 0b97dcd commit 23632cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/graph_qa_chain.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@
499499
"from IPython.core.display import HTML\n",
500500
"\n",
501501
"# Initialize llm object\n",
502-
"llm = ChatVertexAI(model=\"gemini-1.5-flash-002\", temperature=0)\n",
502+
"llm = ChatVertexAI(model=\"gemini-2.0-flash-001\", temperature=0)\n",
503503
"\n",
504504
"# Initialize GraphQAChain\n",
505505
"chain = SpannerGraphQAChain.from_llm(\n",

tests/integration/test_spanner_graph_qa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def random_string(num_char=3):
3737

3838
def get_llm():
3939
llm = ChatVertexAI(
40-
model="gemini-1.5-flash-002",
40+
model="gemini-2.0-flash-001",
4141
temperature=0,
4242
)
4343
return llm

tests/integration/test_spanner_graph_retriever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def random_string(num_char=3):
3939

4040
def get_llm():
4141
llm = ChatVertexAI(
42-
model="gemini-1.5-flash-002",
42+
model="gemini-2.0-flash-001",
4343
temperature=0,
4444
)
4545
return llm

0 commit comments

Comments
 (0)