You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What if the tool contains multiple different LLMS?
python code example:
llm_math_chain = LLMMathChain(llm=llm, verbose=True)
tools.append(
Tool.from_function(
func=llm_math_chain.run,
name="Calculator",
description="useful for when you need to answer questions about math",
args_schema=CalculatorInput
# coroutine= ... <- you can specify an async method if desired as well
)
)
The text was updated successfully, but these errors were encountered:
What if the tool contains multiple different LLMS?
python code example:
The text was updated successfully, but these errors were encountered: