openfree commited on
Commit
f3c71e4
ยท
verified ยท
1 Parent(s): e43fe01

Update functions.json

Browse files
Files changed (1) hide show
  1. functions.json +11 -14
functions.json CHANGED
@@ -31,10 +31,6 @@
31
  },
32
  "example_usage": "```tool_code\nget_stock_price(ticker=\"AAPL\")\n```"
33
  },
34
-
35
- // -------------------------------------------------
36
- // ์ƒˆ๋กœ ์ถ”๊ฐ€๋œ MCO ์•„ํ‚คํ…์ฒ˜ ๋ถ„์„ ํ•จ์ˆ˜ (์˜ˆ์‹œ)
37
- // -------------------------------------------------
38
  {
39
  "name": "analyze_mco_architecture",
40
  "description": "MCO ์•„ํ‚คํ…์ฒ˜(ํ•จ์ˆ˜ JSON + Python ๋ชจ๋“ˆ) ๊ตฌ์กฐ๋ฅผ ๋ถ„์„ ๋ฐ ์š”์•ฝํ•ด์ฃผ๋Š” ํ•จ์ˆ˜์ž…๋‹ˆ๋‹ค.",
@@ -57,23 +53,24 @@
57
  "example_usage": "```tool_code\nanalyze_mco_architecture(framework_version=\"v2.1\", detail_level=4)\n```"
58
  },
59
 
60
- // -------------------------------------------------
61
- // ์ƒˆ๋กœ ์ถ”๊ฐ€ํ•  product_details ํ•จ์ˆ˜
62
- // -------------------------------------------------
63
  {
64
- "name": "product_details",
65
- "description": "์ฃผ์–ด์ง„ product_id๋กœ๋ถ€ํ„ฐ ์ œํ’ˆ ์ƒ์„ธ ์ •๋ณด๋ฅผ ์กฐํšŒ",
66
  "module_path": "my_functions",
67
- "func_name_in_module": "product_details",
68
  "parameters": {
69
  "type": "object",
70
  "properties": {
71
- "product_id": {
72
- "type": "string"
 
73
  }
74
  },
75
- "required": ["product_id"]
76
  },
77
- "example_usage": "```tool_code\nproduct_details(product_id=\"807ZPKBL9V\")\n```"
78
  }
79
  ]
 
31
  },
32
  "example_usage": "```tool_code\nget_stock_price(ticker=\"AAPL\")\n```"
33
  },
 
 
 
 
34
  {
35
  "name": "analyze_mco_architecture",
36
  "description": "MCO ์•„ํ‚คํ…์ฒ˜(ํ•จ์ˆ˜ JSON + Python ๋ชจ๋“ˆ) ๊ตฌ์กฐ๋ฅผ ๋ถ„์„ ๋ฐ ์š”์•ฝํ•ด์ฃผ๋Š” ํ•จ์ˆ˜์ž…๋‹ˆ๋‹ค.",
 
53
  "example_usage": "```tool_code\nanalyze_mco_architecture(framework_version=\"v2.1\", detail_level=4)\n```"
54
  },
55
 
56
+ // ------------------------------------------------------------------------
57
+ // ์ƒˆ๋กœ ์ถ”๊ฐ€๋œ functionName ํ•ญ๋ชฉ (๋ชจ๋ธ์ด functionName(...) ๋ผ๊ณ  ํ˜ธ์ถœํ•ด๋„ ์ฒ˜๋ฆฌ ๊ฐ€๋Šฅ)
58
+ // ------------------------------------------------------------------------
59
  {
60
+ "name": "functionName",
61
+ "description": "[์ž„์‹œ] Calls get_stock_price internally. (ํ˜ธํ™˜์šฉ)",
62
  "module_path": "my_functions",
63
+ "func_name_in_module": "functionName",
64
  "parameters": {
65
  "type": "object",
66
  "properties": {
67
+ "string": {
68
+ "type": "string",
69
+ "description": "Ticker symbol (ex: 'AAPL')"
70
  }
71
  },
72
+ "required": ["string"]
73
  },
74
+ "example_usage": "```tool_code\nfunctionName(string=\"AAPL\")\n```"
75
  }
76
  ]