코드 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": "날씨 상태 설명 (예: 맑음, 비, 박무 등)" } } } }