더북(TheBook)

코드 JSON 예시: tool_manifest.json

# tool_manifest.json 
{
  "name": "get_current_weather",
  "description": "지정된 도시의 현재 날씨를 조회합니다.",
  "parameters": {
    "type": "object",
    "properties": {
      "location": {
        "type": "string",
        "description": "날씨를 조회할 도시 이름 (예: Seoul)"
      }
    },
    "required": ["location"]
  },
  "returns": {
    "type": "object",
    "properties": {
      "temperature": {
        "type": "number",
        "description": "섭씨 온도 (℃)"
      },
      "condition": {
        "type": "string",
        "description": "날씨 상태 설명 (예: 맑음, 비, 박무 등)"
      }
    }
  }
}
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.