Spaces:
Running
Running
Update functions.json
Browse files- functions.json +5 -9
functions.json
CHANGED
|
@@ -53,24 +53,20 @@
|
|
| 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": "[์์]
|
| 62 |
"module_path": "my_functions",
|
| 63 |
"func_name_in_module": "functionName",
|
| 64 |
"parameters": {
|
| 65 |
"type": "object",
|
| 66 |
"properties": {
|
| 67 |
-
"
|
| 68 |
-
"type": "string"
|
| 69 |
-
"description": "Ticker symbol (ex: 'AAPL')"
|
| 70 |
}
|
| 71 |
},
|
| 72 |
-
"required": ["
|
| 73 |
},
|
| 74 |
-
"example_usage": "```tool_code\nfunctionName(
|
| 75 |
}
|
| 76 |
]
|
|
|
|
| 53 |
"example_usage": "```tool_code\nanalyze_mco_architecture(framework_version=\"v2.1\", detail_level=4)\n```"
|
| 54 |
},
|
| 55 |
|
|
|
|
|
|
|
|
|
|
| 56 |
{
|
| 57 |
"name": "functionName",
|
| 58 |
+
"description": "[์์] Just calls get_stock_price(ticker=...). Added for compatibility if model calls functionName(ticker=...).",
|
| 59 |
"module_path": "my_functions",
|
| 60 |
"func_name_in_module": "functionName",
|
| 61 |
"parameters": {
|
| 62 |
"type": "object",
|
| 63 |
"properties": {
|
| 64 |
+
"ticker": {
|
| 65 |
+
"type": "string"
|
|
|
|
| 66 |
}
|
| 67 |
},
|
| 68 |
+
"required": ["ticker"]
|
| 69 |
},
|
| 70 |
+
"example_usage": "```tool_code\nfunctionName(ticker=\"AAPL\")\n```"
|
| 71 |
}
|
| 72 |
]
|