Spaces:
Paused
Paused
Update functions.json
Browse files- functions.json +25 -0
functions.json
CHANGED
|
@@ -30,5 +30,30 @@
|
|
| 30 |
"required": ["ticker"]
|
| 31 |
},
|
| 32 |
"example_usage": "```tool_code\nget_stock_price(ticker=\"AAPL\")\n```"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
}
|
| 34 |
]
|
|
|
|
| 30 |
"required": ["ticker"]
|
| 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 λͺ¨λ) ꡬ쑰λ₯Ό λΆμ λ° μμ½ν΄μ£Όλ ν¨μμ
λλ€.",
|
| 41 |
+
"module_path": "my_functions",
|
| 42 |
+
"func_name_in_module": "analyze_mco_architecture",
|
| 43 |
+
"parameters": {
|
| 44 |
+
"type": "object",
|
| 45 |
+
"properties": {
|
| 46 |
+
"framework_version": {
|
| 47 |
+
"type": "string",
|
| 48 |
+
"description": "νμ¬ MCO νλ μμν¬ λ²μ (μ: 'v2.0')"
|
| 49 |
+
},
|
| 50 |
+
"detail_level": {
|
| 51 |
+
"type": "number",
|
| 52 |
+
"description": "λΆμ μμΈλ (1~5 μ¬μ΄ μ μ)"
|
| 53 |
+
}
|
| 54 |
+
},
|
| 55 |
+
"required": ["framework_version"]
|
| 56 |
+
},
|
| 57 |
+
"example_usage": "```tool_code\nanalyze_mco_architecture(framework_version=\"v2.1\", detail_level=4)\n```"
|
| 58 |
}
|
| 59 |
]
|