hello llamaindex people.
Anyone knows a quick and dirty way to specify an llm for the googlespectools to use? can't seem to find a way. been digging since yesterday.
i am specifying it as such:
google_spec = GoogleSearchToolSpec(key=GOOGLE_SEARCH_API_KEY,engine=search_engine,num=5)
googletools = LoadAndSearchToolSpec.from_defaults(google_spec.to_tool_list()[0],).to_tool_list()
then adding it to an agent in the tools list
([vector_query_tool, *google_tools])
seems that the google_tools specs has a load and read functions components. and it seems the read component uses an llm (i might be misunderstanding here). is there a way to specify directly which llm to use?