{
  "id": "tc_03",
  "slug": "no_tool_needed",
  "category": "tool_call",
  "system": "You are a helpful assistant with access to tools.",
  "messages": [
    {
      "role": "user",
      "content": "What does MoE stand for in the context of large language models, and why is it efficient?"
    }
  ],
  "tools": [
    {
      "type": "function",
      "function": {
        "name": "websearch",
        "description": "Search the web for information and return a list of relevant results.",
        "parameters": {
          "type": "object",
          "properties": {
            "query": {
              "type": "string",
              "description": "Search query string"
            }
          },
          "required": [
            "query"
          ]
        }
      }
    },
    {
      "type": "function",
      "function": {
        "name": "webfetch",
        "description": "Fetch the content of a web page or URL and return its text.",
        "parameters": {
          "type": "object",
          "properties": {
            "url": {
              "type": "string",
              "description": "Full URL to fetch"
            },
            "extract": {
              "type": "string",
              "description": "Optional: specific section to extract"
            }
          },
          "required": [
            "url"
          ]
        }
      }
    },
    {
      "type": "function",
      "function": {
        "name": "calculate",
        "description": "Evaluate a mathematical expression and return the numeric result.",
        "parameters": {
          "type": "object",
          "properties": {
            "expression": {
              "type": "string",
              "description": "Math expression, e.g. '72 * 2'"
            }
          },
          "required": [
            "expression"
          ]
        }
      }
    },
    {
      "type": "function",
      "function": {
        "name": "create_calendar_event",
        "description": "Create a calendar event.",
        "parameters": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string"
            },
            "date": {
              "type": "string",
              "description": "ISO 8601 date, e.g. 2026-04-20"
            },
            "duration_hours": {
              "type": "number"
            }
          },
          "required": [
            "title",
            "date"
          ]
        }
      }
    }
  ],
  "generation_config": {
    "temperature": 0,
    "max_tokens": 512
  },
  "grading": {
    "no_tool_expected": true,
    "expected_tool_call": null,
    "alternative_tool_calls": [],
    "expected_args_must_contain": [],
    "multi_turn": false,
    "tool_response_mock": null
  },
  "quality_checkpoint": "도구 없이 Mixture of Experts 직접 답변"
}