Hi! Does anyone get good results using "gpt-35-turbo-16k" with Agents / Query Engine Tools? I'm not getting good quality when LLM generates the query to call the query engine. Is there any tips to Prompt the ToolMetadata Description? Using "gpt-4" works excellent (but slower and expensive)
query_engine_tools = [ QueryEngineTool( query_engine=doc_summary_index.as_query_engine( vector_store_query_mode="hybrid", service_context=service_context, use_async=True, verbose=True, ), metadata=ToolMetadata( name="doc_summary_index", description=( "Answers questions about Health Care program." "Extract a well-formed question with a lot of detail." ), ), ) ]