Hi everyone,
I am trying to use the decorators and pass a pydantic schema for the arguments. When I do that, I will only get a response for top level parameters, but not for any nested parameters.
@user_proxy.register_for_execution() @destination_expert.register_for_llm(description="a categorized list of places to visit.") def get_destination_details(destination: DestinationSchema) -> DestinationSchema: print("get_destination_details results:") print(destination) return(destination)
So I have: Destination > Categories > Places
But I only get a response for fields in the Destination schema, not Categories or Places.
How can I get a response that includes data for the complete model?