I'm messing around comparing the following code bases
object_mapping = SimpleToolNodeMapping.from_objects([add_tool, multiply_tool])
object_index = ObjectIndex.from_objects(
[add_tool, multiply_tool], object_mapping, VectorStoreIndex, service_context=service_context
)
object_retriever = object_index.as_retriever(similarity_top_k=1)
object_retriever.retrieve("add two numbers")
which responds back with
[<llama_index.tools.function_tool.FunctionTool at 0x28643cb50>]
How do I actually view the content of this?