Created
December 13, 2023 04:31
-
-
Save idontcalculate/cb9e5422b1a1fc841e94938651fe1b28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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