Spaces:
Running
Running
Update functions.json
Browse files- functions.json +21 -1
functions.json
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
},
|
34 |
|
35 |
// -------------------------------------------------
|
36 |
-
// ์๋ก
|
37 |
// -------------------------------------------------
|
38 |
{
|
39 |
"name": "analyze_mco_architecture",
|
@@ -55,5 +55,25 @@
|
|
55 |
"required": ["framework_version"]
|
56 |
},
|
57 |
"example_usage": "```tool_code\nanalyze_mco_architecture(framework_version=\"v2.1\", detail_level=4)\n```"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
}
|
59 |
]
|
|
|
33 |
},
|
34 |
|
35 |
// -------------------------------------------------
|
36 |
+
// ์๋ก ์ถ๊ฐ๋ MCO ์ํคํ
์ฒ ๋ถ์ ํจ์ (์์)
|
37 |
// -------------------------------------------------
|
38 |
{
|
39 |
"name": "analyze_mco_architecture",
|
|
|
55 |
"required": ["framework_version"]
|
56 |
},
|
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 |
]
|