Spaces:
Running
Running
Update functions.json
Browse files- 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 |
-
// ์๋ก
|
62 |
-
//
|
63 |
{
|
64 |
-
"name": "
|
65 |
-
"description": "
|
66 |
"module_path": "my_functions",
|
67 |
-
"func_name_in_module": "
|
68 |
"parameters": {
|
69 |
"type": "object",
|
70 |
"properties": {
|
71 |
-
"
|
72 |
-
"type": "string"
|
|
|
73 |
}
|
74 |
},
|
75 |
-
"required": ["
|
76 |
},
|
77 |
-
"example_usage": "```tool_code\
|
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 |
]
|