Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Oct 29, 2024
1 parent 7d30918 commit fbc2f5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/vertexai/tests/integration_tests/test_chat_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,12 +302,12 @@ def get_climate_info(query: str):
tools = [get_climate_info]
agent = agents.create_tool_calling_agent(
llm=llm,
tools=tools, # type: ignore[arg-type]
tools=tools,
prompt=prompt_template,
)
agent_executor = agents.AgentExecutor( # type: ignore[call-arg]
agent=agent,
tools=tools, # type: ignore[arg-type]
tools=tools,
verbose=False,
stream_runnable=False,
)
Expand Down

0 comments on commit fbc2f5e

Please sign in to comment.