{ "type": "function", "function": { "name": "greet", "description": "Greets the user. Make sure to get their name and age before calling.\n\nArgs:\n name: Name of the user.\n age: Age of the user.\n location: Best place on earth.", "parameters": { "type": "object", "properties": { "name": {"type": "string"}, "age": {"type": "integer"}, "location": {"type": "string"} }, "required": ["name", "age"] } } }