LLM Tool Schema Builder

Design and convert tool calling schemas for different LLM APIs

Tool Definition
Parameters

No parameters yet

Click "Add Parameter" to get started

JSON Schema
{
  "type": "function",
  "function": {
    "name": "my_function",
    "description": "Describe what your function does...",
    "strict": true,
    "parameters": {
      "type": "object",
      "properties": {},
      "required": [],
      "additionalProperties": false
    }
  }
}