openfree commited on
Commit
c63110e
ยท
verified ยท
1 Parent(s): 1954a4a

Update functions.json

Browse files
Files changed (1) hide show
  1. 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": "[์ž„์‹œ] 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
  ]
 
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
  ]