ginipick commited on
Commit
23216b7
Β·
verified Β·
1 Parent(s): d35291a

Update functions.json

Browse files
Files changed (1) hide show
  1. 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
  ]