Hi! Is there a way to use 'query_engine_tools' and custom tools (e,g. 'add' , 'multiply') simultaneously for the openai agent? For example, how can I add my custom tools to the below code?
context_agent = ContextRetrieverOpenAIAgent.from_tools_and_retriever(
query_engine_tools,
context_index.as_retriever(similarity_top_k=1),
verbose=True,
)
Thanks!