Skip to content

Instantly share code, notes, and snippets.

@idontcalculate
Created December 13, 2023 04:31
Show Gist options
  • Save idontcalculate/cb9e5422b1a1fc841e94938651fe1b28 to your computer and use it in GitHub Desktop.
Save idontcalculate/cb9e5422b1a1fc841e94938651fe1b28 to your computer and use it in GitHub Desktop.
query_engine_tools = [
QueryEngineTool(
query_engine=tesla_engine,
metadata=ToolMetadata(
name="tesla_tool",
description=(
"Provides information about Teslas predictions for future "
"Use a detailed plain text question as input to the tool."
),
),
),
QueryEngineTool(
query_engine=webtext_engine,
metadata=ToolMetadata(
name="webtext_tool",
description=(
"Provides information about tesla's life, legacy and biographical data."
"Use a detailed plain text question as input to the tool."
),
),
),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment