This is a mock preview of FunctionGemma in action. Type a natural language command and see how FunctionGemma would convert it into a structured function call. The live interactive playground with real model inference is coming soon.
// Enter a command above and click "Run (Demo)" to see the output // FunctionGemma will convert your natural language // into a structured JSON function call like this: { "name": "function_name", "arguments": { "param1": "value1", "param2": "value2" } }
When you type a command and click "Run," this demo shows you the kind of structured JSON output that FunctionGemma produces. In a real implementation, FunctionGemma would analyze your natural language input and generate the appropriate function call based on your defined tool schemas. The output format is consistent and machine-readable, making it easy to integrate FunctionGemma into your applications.
Input: "What's the weather like in Paris tomorrow?"
{"name": "get_weather", "arguments": {"location": "Paris", "date": "tomorrow"}}
Input: "Book a dentist appointment next Monday at 10am"
{"name": "create_event", "arguments": {"title": "Dentist appointment", "date": "next Monday", "time": "10:00"}}
Input: "Remind me to call mom at 6pm"
{"name": "create_reminder", "arguments": {"task": "call mom", "time": "18:00"}}
The interactive FunctionGemma playground with real-time model inference is coming soon. Leave your email to get notified when it launches.