@atlisp/mcp 1.8.28 → 1.8.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -5
- package/dist/atlisp-mcp.js +368 -338
- package/dist/cad-rothelper.dll +0 -0
- package/dist/config.js +1 -1
- package/dist/handlers/cad-handlers.js +18 -0
- package/package.json +1 -1
package/dist/atlisp-mcp.js
CHANGED
|
@@ -116,7 +116,7 @@ var init_config = __esm({
|
|
|
116
116
|
TRANSPORT: z.enum(["http", "stdio", "ws"]).optional().default("http"),
|
|
117
117
|
MCP_API_KEY: z.string().optional().default(""),
|
|
118
118
|
ENABLE_SSE: z.coerce.boolean().optional().default(true),
|
|
119
|
-
MESSAGE_TIMEOUT: z.coerce.number().optional().default(
|
|
119
|
+
MESSAGE_TIMEOUT: z.coerce.number().optional().default(3e5),
|
|
120
120
|
HEARTBEAT_INTERVAL: z.coerce.number().optional().default(3e4),
|
|
121
121
|
BUSY_RETRIES: z.coerce.number().optional().default(10),
|
|
122
122
|
BUSY_DELAY: z.coerce.number().optional().default(500),
|
|
@@ -2893,9 +2893,19 @@ var tools;
|
|
|
2893
2893
|
var init_cad_tools = __esm({
|
|
2894
2894
|
"src/tools/cad-tools.js"() {
|
|
2895
2895
|
tools = [
|
|
2896
|
+
{
|
|
2897
|
+
name: "open_cad",
|
|
2898
|
+
description: '\u9996\u9009\uFF1A\u542F\u52A8/\u8FDE\u63A5 CAD \u5E76\u4F7F\u7A97\u53E3\u524D\u7F6E\u3002\u7528\u6237\u8981\u6C42"\u6253\u5F00CAD/\u542F\u52A8CAD/\u5F00\u542FCAD"\u6216\u9996\u6B21\u64CD\u4F5C CAD \u524D\u5FC5\u987B\u5148\u8C03\u6B64\u5DE5\u5177\u3002\u672A\u6307\u5B9A\u5E73\u53F0\u65F6\u81EA\u52A8\u68C0\u6D4B AutoCAD > ZWCAD > GStarCAD > BricsCAD',
|
|
2899
|
+
inputSchema: {
|
|
2900
|
+
type: "object",
|
|
2901
|
+
properties: {
|
|
2902
|
+
platform: { type: "string", description: "\u6307\u5B9A CAD \u5E73\u53F0: AutoCAD\uFF08\u63A8\u8350\uFF0C\u81EA\u52A8\u68C0\u6D4B\uFF09, ZWCAD\uFF08\u4E2D\u671B\uFF09, GStarCAD\uFF08\u6D69\u8FB0\uFF09, BricsCAD\u3002\u4E0D\u4F20\u5219\u6309 AutoCAD > ZWCAD > GStarCAD > BricsCAD \u4F18\u5148\u7EA7\u81EA\u52A8\u68C0\u6D4B" }
|
|
2903
|
+
}
|
|
2904
|
+
}
|
|
2905
|
+
},
|
|
2896
2906
|
{
|
|
2897
2907
|
name: "connect_cad",
|
|
2898
|
-
description: "\u8FDE\u63A5\u5230 CAD
|
|
2908
|
+
description: "\u8FDE\u63A5\u5230 CAD \u540E\u53F0\uFF08\u4E0D\u5207\u7A97\u53E3\uFF09\u3002open_cad \u5931\u8D25\u65F6\u53EF\u5C1D\u8BD5\u6B64\u5DE5\u5177\u3002\u81EA\u52A8\u68C0\u6D4B AutoCAD > ZWCAD > GStarCAD > BricsCAD",
|
|
2899
2909
|
inputSchema: {
|
|
2900
2910
|
type: "object",
|
|
2901
2911
|
properties: {
|
|
@@ -2905,7 +2915,7 @@ var init_cad_tools = __esm({
|
|
|
2905
2915
|
},
|
|
2906
2916
|
{
|
|
2907
2917
|
name: "eval_lisp",
|
|
2908
|
-
description: "\u5728 CAD \u4E2D\u6267\u884C AutoLISP \u4EE3\u7801\uFF08\u4E0D\u8FD4\u56DE\u7ED3\u679C\uFF09",
|
|
2918
|
+
description: "\u5728 CAD \u4E2D\u6267\u884C AutoLISP \u4EE3\u7801\uFF08\u4E0D\u8FD4\u56DE\u7ED3\u679C\uFF09\u3002\u9002\u7528\u4E8E\u8BBE\u7F6E\u53D8\u91CF\u3001\u5B9A\u4E49\u51FD\u6570\u3001\u6267\u884C\u547D\u4EE4\u7B49\u65E0\u9700\u56DE\u8BFB\u7684\u573A\u666F\u3002\u5982\u9700\u8FD4\u56DE\u7ED3\u679C\u8BF7\u7528 eval_lisp_with_result",
|
|
2909
2919
|
inputSchema: {
|
|
2910
2920
|
type: "object",
|
|
2911
2921
|
properties: { code: { type: "string", description: "\u8981\u6267\u884C\u7684 LISP \u4EE3\u7801" } },
|
|
@@ -2914,7 +2924,7 @@ var init_cad_tools = __esm({
|
|
|
2914
2924
|
},
|
|
2915
2925
|
{
|
|
2916
2926
|
name: "eval_lisp_with_result",
|
|
2917
|
-
description: "\u5728 CAD \u4E2D\u6267\u884C AutoLISP \u4EE3\u7801\u5E76\u8FD4\u56DE\u7ED3\u679C",
|
|
2927
|
+
description: "\u5728 CAD \u4E2D\u6267\u884C AutoLISP \u4EE3\u7801\u5E76\u8FD4\u56DE\u7ED3\u679C\u5B57\u7B26\u4E32\u3002\u9002\u7528\u67E5\u8BE2(getvar/ssget/entget/tblnext\u7B49)\u6216\u9700\u8981\u56DE\u8BFB\u51FD\u6570\u8FD4\u56DE\u503C\u7684\u573A\u666F\u3002\u6709\u4E2D\u6587\u65F6\u5EFA\u8BAE encoding=gbk",
|
|
2918
2928
|
inputSchema: {
|
|
2919
2929
|
type: "object",
|
|
2920
2930
|
properties: {
|
|
@@ -2926,17 +2936,17 @@ var init_cad_tools = __esm({
|
|
|
2926
2936
|
},
|
|
2927
2937
|
{
|
|
2928
2938
|
name: "get_cad_info",
|
|
2929
|
-
description: "\u83B7\u53D6\u5F53\u524D CAD \u4FE1\u606F",
|
|
2939
|
+
description: "\u83B7\u53D6\u5F53\u524D\u8FDE\u63A5\u7684 CAD \u4FE1\u606F\uFF08\u5E73\u53F0\u540D\u79F0\u3001\u7248\u672C\u53F7\u3001\u6587\u6863\u540D\u7B49\uFF09\u3002\u9996\u6B21\u4E86\u89E3 CAD \u73AF\u5883\u65F6\u8C03\u7528",
|
|
2930
2940
|
inputSchema: { type: "object", properties: {} }
|
|
2931
2941
|
},
|
|
2932
2942
|
{
|
|
2933
2943
|
name: "get_platform_info",
|
|
2934
|
-
description: "\u83B7\u53D6 CAD \u5E73\u53F0\
|
|
2944
|
+
description: "\u83B7\u53D6\u652F\u6301\u7684 CAD \u5E73\u53F0\u5217\u8868\u53CA\u5F53\u524D\u8FDE\u63A5\u72B6\u6001\u3002\u7528\u4E8E\u6392\u67E5\u8FDE\u63A5\u95EE\u9898",
|
|
2935
2945
|
inputSchema: { type: "object", properties: {} }
|
|
2936
2946
|
},
|
|
2937
2947
|
{
|
|
2938
2948
|
name: "at_command",
|
|
2939
|
-
description: "\u6267\u884C @lisp \u547D\u4EE4",
|
|
2949
|
+
description: "\u6267\u884C @lisp \u5305\u7BA1\u7406\u5668\u547D\u4EE4\uFF0C\u5982 package-install, system-info \u7B49\u3002\u9700\u8981 @lisp \u73AF\u5883\u5DF2\u52A0\u8F7D\uFF08\u5148\u8C03\u7528 init_atlisp\uFF09",
|
|
2940
2950
|
inputSchema: {
|
|
2941
2951
|
type: "object",
|
|
2942
2952
|
properties: { command: { type: "string", description: "@lisp \u547D\u4EE4" } },
|
|
@@ -2945,31 +2955,31 @@ var init_cad_tools = __esm({
|
|
|
2945
2955
|
},
|
|
2946
2956
|
{
|
|
2947
2957
|
name: "new_document",
|
|
2948
|
-
description:
|
|
2958
|
+
description: '\u5728 CAD \u4E2D\u65B0\u5EFA\u7A7A\u767D DWG \u6587\u6863\u3002\u7528\u6237\u8981\u6C42"\u65B0\u5EFA\u6587\u4EF6/\u65B0\u5EFA\u56FE\u7EB8"\u65F6\u8C03\u7528',
|
|
2949
2959
|
inputSchema: { type: "object", properties: {} }
|
|
2950
2960
|
},
|
|
2951
2961
|
{
|
|
2952
2962
|
name: "bring_to_front",
|
|
2953
|
-
description:
|
|
2963
|
+
description: '\u4EC5\u5C06 CAD \u7A97\u53E3\u5207\u6362\u5230\u524D\u53F0\uFF08\u4E0D\u91CD\u65B0\u8FDE\u63A5\uFF09\u3002\u7528\u6237\u8BF4"\u5207\u6362\u5230CAD/\u663E\u793ACAD\u7A97\u53E3/\u5524\u9192CAD"\u65F6\u8C03\u7528\u3002\u82E5\u672A\u8FDE\u63A5\u8BF7\u5148\u7528 open_cad',
|
|
2954
2964
|
inputSchema: { type: "object", properties: {} }
|
|
2955
2965
|
},
|
|
2956
2966
|
{
|
|
2957
2967
|
name: "install_atlisp",
|
|
2958
|
-
description: "\u5728 CAD \u4E2D\u5B89\u88C5 @lisp",
|
|
2968
|
+
description: "\u5728 CAD \u4E2D\u5B89\u88C5 @lisp \u5305\u7BA1\u7406\u5668\uFF08\u9996\u6B21\u4F7F\u7528\u524D\u8C03\u7528\u4E00\u6B21\u5373\u53EF\uFF09\u3002\u82E5\u5DF2\u5B89\u88C5\u5219\u8DF3\u8FC7",
|
|
2959
2969
|
inputSchema: { type: "object", properties: {} }
|
|
2960
2970
|
},
|
|
2961
2971
|
{
|
|
2962
2972
|
name: "init_atlisp",
|
|
2963
|
-
description: "\u521D\u59CB\
|
|
2973
|
+
description: "\u52A0\u8F7D @lisp \u51FD\u6570\u5E93\u548C\u521D\u59CB\u53D8\u91CF\u5230 CAD\u3002\u82E5\u8FDE\u63A5\u540E\u81EA\u52A8\u52A0\u8F7D\u5931\u8D25\u53EF\u624B\u52A8\u8C03\u7528\u3002\u6267\u884C @lisp \u51FD\u6570\u524D\u9700\u5148\u8C03\u7528\u6B64\u5DE5\u5177",
|
|
2964
2974
|
inputSchema: { type: "object", properties: {} }
|
|
2965
2975
|
},
|
|
2966
2976
|
{
|
|
2967
2977
|
name: "get_system_status",
|
|
2968
|
-
description:
|
|
2978
|
+
description: '\u83B7\u53D6\u5B8C\u6574\u8BCA\u65AD\u4FE1\u606F\uFF1AMCP\u7248\u672C\u3001Worker\u72B6\u6001\u3001CAD\u8FDE\u63A5\u72B6\u6001(Lisp\u53EF\u6267\u884C\u6027)\u3001\u5DF2\u5B89\u88C5\u5305\u3002\u6392\u67E5"\u5DE5\u5177\u4E0D\u5DE5\u4F5C/CAD\u6CA1\u53CD\u5E94"\u65F6\u4F18\u5148\u8C03\u7528',
|
|
2969
2979
|
inputSchema: { type: "object", properties: {} }
|
|
2970
2980
|
},
|
|
2971
|
-
{ name: "get_system_variable", description:
|
|
2972
|
-
{ name: "set_system_variable", description: "\u8BBE\u7F6E CAD \u7CFB\u7EDF\u53D8\u91CF\u503C", inputSchema: { type: "object", properties: { name: { type: "string", description: "\u7CFB\u7EDF\u53D8\u91CF\u540D" }, value: { type: "string", description: "\u53D8\u91CF\u503C" } }, required: ["name", "value"] } }
|
|
2981
|
+
{ name: "get_system_variable", description: '\u8BFB\u53D6 CAD \u7CFB\u7EDF\u53D8\u91CF\u503C\u3002\u7528\u6237\u95EE"\u5F53\u524D\u56FE\u5C42/\u6355\u6349\u72B6\u6001/\u5355\u4F4D\u8BBE\u7F6E"\u65F6\u8C03\u7528\u3002\u4F20 * \u5217\u51FA\u6240\u6709\u53D8\u91CF\u53CA\u5F53\u524D\u503C', inputSchema: { type: "object", properties: { name: { type: "string", description: "\u7CFB\u7EDF\u53D8\u91CF\u540D\u3002\u4F20 * \u5217\u51FA\u6240\u6709\u7CFB\u7EDF\u53D8\u91CF\u53CA\u5F53\u524D\u503C" } }, required: ["name"] } },
|
|
2982
|
+
{ name: "set_system_variable", description: "\u8BBE\u7F6E CAD \u7CFB\u7EDF\u53D8\u91CF\u503C\uFF0C\u5982\u4FEE\u6539\u56FE\u5C42/\u6355\u6349/osmode/\u5355\u4F4D\u7B49\u3002\u9700\u8981\u77E5\u9053\u53D8\u91CF\u540D\u548C\u5408\u6CD5\u503C", inputSchema: { type: "object", properties: { name: { type: "string", description: "\u7CFB\u7EDF\u53D8\u91CF\u540D" }, value: { type: "string", description: "\u53D8\u91CF\u503C\uFF08\u6570\u503C\u6216\u5B57\u7B26\u4E32\uFF0C\u4E0D\u9700\u5F15\u53F7\uFF09" } }, required: ["name", "value"] } }
|
|
2973
2983
|
];
|
|
2974
2984
|
}
|
|
2975
2985
|
});
|
|
@@ -2981,24 +2991,24 @@ var init_package_tools = __esm({
|
|
|
2981
2991
|
tools2 = [
|
|
2982
2992
|
{
|
|
2983
2993
|
name: "list_packages",
|
|
2984
|
-
description:
|
|
2994
|
+
description: '\u5217\u51FA CAD \u4E2D\u5DF2\u5B89\u88C5\u7684 @lisp \u5305\u53CA\u5176\u7248\u672C\u3002\u7528\u6237\u95EE"\u88C5\u4E86\u54EA\u4E9B\u5305/\u6709\u54EA\u4E9B\u529F\u80FD"\u65F6\u8C03\u7528\u3002\u9700\u5148 init_atlisp',
|
|
2985
2995
|
inputSchema: { type: "object", properties: {} }
|
|
2986
2996
|
},
|
|
2987
2997
|
{
|
|
2988
2998
|
name: "search_packages",
|
|
2989
|
-
description: "\
|
|
2999
|
+
description: "\u5728 @lisp \u8FDC\u7A0B\u4ED3\u5E93\u641C\u7D22\u53EF\u7528\u5305\u3002\u7528\u6237\u60F3\u88C5\u65B0\u529F\u80FD\u65F6\u5148\u7528\u6B64\u5DE5\u5177\u641C\u7D22",
|
|
2990
3000
|
inputSchema: {
|
|
2991
3001
|
type: "object",
|
|
2992
|
-
properties: { query: { type: "string", description:
|
|
3002
|
+
properties: { query: { type: "string", description: '\u641C\u7D22\u5173\u952E\u8BCD\uFF0C\u5982 "string"\u3001"block"\u3001"dimension"' } },
|
|
2993
3003
|
required: ["query"]
|
|
2994
3004
|
}
|
|
2995
3005
|
},
|
|
2996
3006
|
{
|
|
2997
3007
|
name: "install_package",
|
|
2998
|
-
description: "\u5B89\u88C5 @lisp \u5305\u5230 CAD",
|
|
3008
|
+
description: "\u4ECE\u8FDC\u7A0B\u4ED3\u5E93\u5B89\u88C5 @lisp \u5305\u5230 CAD\u3002\u9700\u5148 search_packages \u627E\u5230\u5305\u540D\uFF0C\u518D\u8C03\u7528\u6B64\u5DE5\u5177\u5B89\u88C5\u3002\u5B89\u88C5\u540E\u9700 init_atlisp \u52A0\u8F7D",
|
|
2999
3009
|
inputSchema: {
|
|
3000
3010
|
type: "object",
|
|
3001
|
-
properties: { packageName: { type: "string", description: "\u5305\u540D\u79F0" } },
|
|
3011
|
+
properties: { packageName: { type: "string", description: "\u5305\u540D\u79F0\uFF08\u4ECE search_packages \u7ED3\u679C\u4E2D\u83B7\u53D6\uFF09" } },
|
|
3002
3012
|
required: ["packageName"]
|
|
3003
3013
|
}
|
|
3004
3014
|
}
|
|
@@ -3013,7 +3023,7 @@ var init_info_tools = __esm({
|
|
|
3013
3023
|
tools3 = [
|
|
3014
3024
|
{
|
|
3015
3025
|
name: "get_function_usage",
|
|
3016
|
-
description: "\
|
|
3026
|
+
description: "\u67E5\u8BE2 @lisp \u51FD\u6570\u7684\u8BE6\u7EC6\u7528\u6CD5\u3001\u53C2\u6570\u8BF4\u660E\u548C\u793A\u4F8B\u3002\u7528\u6237\u4E0D\u77E5\u9053\u600E\u4E48\u7528\u67D0\u51FD\u6570\u65F6\u8C03\u7528",
|
|
3017
3027
|
inputSchema: {
|
|
3018
3028
|
type: "object",
|
|
3019
3029
|
properties: {
|
|
@@ -3025,32 +3035,32 @@ var init_info_tools = __esm({
|
|
|
3025
3035
|
},
|
|
3026
3036
|
{
|
|
3027
3037
|
name: "list_symbols",
|
|
3028
|
-
description: "\u5217\u51FA @lisp \u6240\u6709\u7B26\u53F7\
|
|
3038
|
+
description: "\u5217\u51FA @lisp \u73AF\u5883\u4E2D\u6240\u6709\u53EF\u7528\u7684\u51FD\u6570\u548C\u53D8\u91CF\u3002\u6307\u5B9A\u5305\u540D\u5219\u53EA\u5217\u51FA\u8BE5\u5305\u7B26\u53F7\u3002\u7528\u4E8E\u63A2\u7D22\u53EF\u7528\u529F\u80FD",
|
|
3029
3039
|
inputSchema: {
|
|
3030
3040
|
type: "object",
|
|
3031
3041
|
properties: {
|
|
3032
|
-
package: { type: "string", description: "\u5305\u540D\uFF08\u53EF\u9009\uFF09" }
|
|
3042
|
+
package: { type: "string", description: "\u5305\u540D\uFF08\u53EF\u9009\uFF09\uFF0C\u5982 string\u3001block\u3001dim" }
|
|
3033
3043
|
}
|
|
3034
3044
|
}
|
|
3035
3045
|
},
|
|
3036
3046
|
{
|
|
3037
3047
|
name: "import_funlib",
|
|
3038
|
-
description: "\u4ECE\
|
|
3048
|
+
description: "\u4ECE @lisp \u670D\u52A1\u5668\u83B7\u53D6\u51FD\u6570\u5E93\u6E05\u5355\u5BFC\u5165\u5230 Agent \u4E0A\u4E0B\u6587\u3002\u8BA9 Agent \u77E5\u9053\u6709\u54EA\u4E9B @lisp \u51FD\u6570\u53EF\u7528\u3002format=list \u8FD4\u56DE\u7B80\u6D01\u7684\u51FD\u6570\u540D:\u63CF\u8FF0\u5217\u8868",
|
|
3039
3049
|
inputSchema: {
|
|
3040
3050
|
type: "object",
|
|
3041
3051
|
properties: {
|
|
3042
|
-
format: { type: "string", enum: ["json", "list"], description: "\u8FD4\u56DE\u683C\u5F0F\uFF1Ajson\uFF08\u5B8C\u6574JSON\uFF09\u6216 list\uFF08\u51FD\u6570\u540D:\u63CF\u8FF0
|
|
3052
|
+
format: { type: "string", enum: ["json", "list"], description: "\u8FD4\u56DE\u683C\u5F0F\uFF1Ajson\uFF08\u5B8C\u6574JSON\u542B\u53C2\u6570\uFF09\u6216 list\uFF08\u51FD\u6570\u540D:\u63CF\u8FF0\uFF09\uFF0C\u9ED8\u8BA4 json" }
|
|
3043
3053
|
}
|
|
3044
3054
|
}
|
|
3045
3055
|
},
|
|
3046
3056
|
{
|
|
3047
3057
|
name: "list_prompts",
|
|
3048
|
-
description: "\u5217\u51FA\u6240\u6709\u53EF\u7528\u7684
|
|
3058
|
+
description: "\u5217\u51FA\u6240\u6709\u53EF\u7528\u7684 MCP Prompt \u6A21\u677F\uFF08\u5982 \u5206\u6790\u56FE\u7EB8/\u751F\u6210\u6807\u6CE8/\u5BFC\u51FA\u62A5\u8868 \u7B49\uFF09\u3002\u7528\u6237\u60F3\u7528\u9884\u5236\u529F\u80FD\u65F6\u5148\u5217\u51FA\u6765\u770B\u770B",
|
|
3049
3059
|
inputSchema: { type: "object", properties: {} }
|
|
3050
3060
|
},
|
|
3051
3061
|
{
|
|
3052
3062
|
name: "get_prompt",
|
|
3053
|
-
description: "\u83B7\u53D6\u6307\u5B9A\
|
|
3063
|
+
description: "\u83B7\u53D6\u6307\u5B9A Prompt \u6A21\u677F\u7684\u8BE6\u7EC6\u5185\u5BB9\uFF08\u542B\u53C2\u6570\u8BF4\u660E\u548C\u4F7F\u7528\u793A\u4F8B\uFF09",
|
|
3054
3064
|
inputSchema: {
|
|
3055
3065
|
type: "object",
|
|
3056
3066
|
properties: {
|
|
@@ -3060,9 +3070,9 @@ var init_info_tools = __esm({
|
|
|
3060
3070
|
required: ["name"]
|
|
3061
3071
|
}
|
|
3062
3072
|
},
|
|
3063
|
-
{ name: "search_tools", description: "\
|
|
3064
|
-
{ name: "list_tools_by_category", description: "\u6309\u5206\u7C7B\u5217\u51FA\
|
|
3065
|
-
{ name: "get_tool_info", description: "\u83B7\u53D6\u5DE5\u5177\u7684\u8BE6\u7EC6\
|
|
3073
|
+
{ name: "search_tools", description: "\u641C\u7D22\u5DE5\u5177\u540D\u79F0\u6216\u63CF\u8FF0\u3002\u4E0D\u77E5\u9053\u7528\u4EC0\u4E48\u5DE5\u5177\u65F6\u5148\u7528\u6B64\u5DE5\u5177\u641C\u7D22", inputSchema: { type: "object", properties: { query: { type: "string", description: "\u641C\u7D22\u5173\u952E\u8BCD\uFF08\u5339\u914D\u5DE5\u5177\u540D\u79F0\u548C\u63CF\u8FF0\uFF09" } }, required: ["query"] } },
|
|
3074
|
+
{ name: "list_tools_by_category", description: "\u6309\u5206\u7C7B\u6D4F\u89C8\u6240\u6709\u5DE5\u5177\uFF08\u7ED8\u56FE/\u4FEE\u6539/\u56FE\u5C42/\u5757/\u6253\u5370\u7B49\uFF09\u3002\u4E0D\u4F20 category \u5219\u5217\u51FA\u6240\u6709\u5206\u7C7B\u540D\u79F0", inputSchema: { type: "object", properties: { category: { type: "string", description: "\u5206\u7C7B\u540D\u79F0\uFF0C\u5982 \u7ED8\u56FE\u4E0E3D\u3001\u4FEE\u6539\u3001\u56FE\u5C42\u3001\u5757\u3001\u6253\u5370\uFF08\u53EF\u9009\uFF0C\u4E0D\u4F20\u5219\u5217\u51FA\u6240\u6709\u5206\u7C7B\uFF09" } } } },
|
|
3075
|
+
{ name: "get_tool_info", description: "\u83B7\u53D6\u5DE5\u5177\u7684\u8BE6\u7EC6\u5143\u6570\u636E\uFF1A\u53C2\u6570\u5217\u8868\u3001\u5206\u7C7B\uFF08category\uFF09\u3001\u53EA\u8BFB(readOnlyHint)\u3001\u7834\u574F\u6027(destructiveHint)\u6807\u8BB0", inputSchema: { type: "object", properties: { name: { type: "string", description: "\u5DE5\u5177\u540D\u79F0" } }, required: ["name"] } }
|
|
3066
3076
|
];
|
|
3067
3077
|
}
|
|
3068
3078
|
});
|
|
@@ -3074,7 +3084,7 @@ var init_entity_tools = __esm({
|
|
|
3074
3084
|
tools4 = [
|
|
3075
3085
|
{
|
|
3076
3086
|
name: "get_entity",
|
|
3077
|
-
description: "\u83B7\u53D6\u5B9E\u4F53\u5C5E\u6027\
|
|
3087
|
+
description: "\u83B7\u53D6\u5355\u4E2A\u5B9E\u4F53\u5C5E\u6027\uFF08\u53E5\u67C4/\u7C7B\u578B/\u56FE\u5C42/\u989C\u8272/\u7EBF\u578B/\u5750\u6807\u7B49\uFF09\u3002\u901A\u8FC7 handle \u67E5\u8BE2\u3002\u60F3\u77E5\u9053\u67D0\u5B9E\u4F53\u662F\u4EC0\u4E48\u65F6\u8C03\u7528",
|
|
3078
3088
|
inputSchema: {
|
|
3079
3089
|
type: "object",
|
|
3080
3090
|
properties: {
|
|
@@ -3085,7 +3095,7 @@ var init_entity_tools = __esm({
|
|
|
3085
3095
|
},
|
|
3086
3096
|
{
|
|
3087
3097
|
name: "set_entity",
|
|
3088
|
-
description: "\
|
|
3098
|
+
description: "\u4FEE\u6539\u5355\u4E2A\u5B9E\u4F53\u7684\u5C5E\u6027\u503C\u3002\u652F\u6301: layer(\u56FE\u5C42)/color(\u989C\u8272\u53F7)/linetype(\u7EBF\u578B\u540D)/elevation(\u6807\u9AD8)",
|
|
3089
3099
|
inputSchema: {
|
|
3090
3100
|
type: "object",
|
|
3091
3101
|
properties: {
|
|
@@ -3098,7 +3108,7 @@ var init_entity_tools = __esm({
|
|
|
3098
3108
|
},
|
|
3099
3109
|
{
|
|
3100
3110
|
name: "delete_entity",
|
|
3101
|
-
description:
|
|
3111
|
+
description: '\u5220\u9664\u5355\u4E2A\u5B9E\u4F53\u3002\u7528\u6237\u8BF4"\u5220\u9664\u67D0\u7269\u4F53/\u64E6\u9664"\u65F6\u8C03\u7528\u3002\u6279\u91CF\u5220\u9664\u8BF7\u7528 batch_delete',
|
|
3102
3112
|
inputSchema: {
|
|
3103
3113
|
type: "object",
|
|
3104
3114
|
properties: {
|
|
@@ -3109,7 +3119,7 @@ var init_entity_tools = __esm({
|
|
|
3109
3119
|
},
|
|
3110
3120
|
{
|
|
3111
3121
|
name: "select_entities",
|
|
3112
|
-
description: "\u6309\u6761\u4EF6\u9009\u62E9\u5B9E\u4F53\uFF0C\u8FD4\u56DE\u53E5\u67C4\
|
|
3122
|
+
description: "\u6309\u6761\u4EF6(type/layer)\u8FC7\u6EE4\u9009\u62E9\u5B9E\u4F53\uFF0C\u8FD4\u56DE\u53E5\u67C4\u6570\u7EC4(string[])\u3002\u7ED3\u679C\u53EF\u4F20\u7ED9 batch_delete/batch_move/batch_set_layer \u7B49\u6279\u91CF\u5DE5\u5177\u3002\u8FD9\u662F\u83B7\u53D6\u53E5\u67C4\u7684\u4E3B\u8981\u5165\u53E3",
|
|
3113
3123
|
inputSchema: {
|
|
3114
3124
|
type: "object",
|
|
3115
3125
|
properties: {
|
|
@@ -3117,13 +3127,13 @@ var init_entity_tools = __esm({
|
|
|
3117
3127
|
}
|
|
3118
3128
|
}
|
|
3119
3129
|
},
|
|
3120
|
-
{ name: "bring_to_front_entity", description: "\u5C06\u5B9E\u4F53\
|
|
3121
|
-
{ name: "send_to_back_entity", description: "\u5C06\u5B9E\u4F53\
|
|
3122
|
-
{ name: "bring_above_entity", description: "\u5C06\u5B9E\u4F53\u7F6E\u4E8E\u53C2\u7167\u5B9E\u4F53\
|
|
3123
|
-
{ name: "send_below_entity", description: "\u5C06\u5B9E\u4F53\u7F6E\u4E8E\u53C2\u7167\u5B9E\u4F53\
|
|
3124
|
-
{ name: "select_all", description: "\
|
|
3125
|
-
{ name: "select_last", description: "\u9009\u62E9\u6700\u540E\u521B\u5EFA\u7684\u5B9E\u4F53", inputSchema: { type: "object", properties: {} } },
|
|
3126
|
-
{ name: "select_by_color", description: "\u6309\u989C\u8272\u9009\u62E9\u5B9E\u4F53", inputSchema: { type: "object", properties: { colorIndex: { type: "integer", description: "\u989C\u8272\
|
|
3130
|
+
{ name: "bring_to_front_entity", description: "\u5C06\u6307\u5B9A\u5B9E\u4F53\u79FB\u5230\u663E\u793A\u987A\u5E8F\u6700\u524D\uFF08\u8986\u76D6\u5728\u5176\u4ED6\u5B9E\u4F53\u4E4B\u4E0A\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" } }, required: ["handle"] } },
|
|
3131
|
+
{ name: "send_to_back_entity", description: "\u5C06\u6307\u5B9A\u5B9E\u4F53\u79FB\u5230\u663E\u793A\u987A\u5E8F\u6700\u540E\uFF08\u88AB\u5176\u4ED6\u5B9E\u4F53\u8986\u76D6\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" } }, required: ["handle"] } },
|
|
3132
|
+
{ name: "bring_above_entity", description: "\u5C06\u76EE\u6807\u5B9E\u4F53\u7F6E\u4E8E\u53C2\u7167\u5B9E\u4F53\u4E0A\u65B9\uFF08\u8C03\u6574\u663E\u793A\u987A\u5E8F\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u76EE\u6807\u5B9E\u4F53\u53E5\u67C4" }, referenceHandle: { type: "string", description: "\u53C2\u7167\u5B9E\u4F53\u53E5\u67C4" } }, required: ["handle", "referenceHandle"] } },
|
|
3133
|
+
{ name: "send_below_entity", description: "\u5C06\u76EE\u6807\u5B9E\u4F53\u7F6E\u4E8E\u53C2\u7167\u5B9E\u4F53\u4E0B\u65B9\uFF08\u8C03\u6574\u663E\u793A\u987A\u5E8F\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u76EE\u6807\u5B9E\u4F53\u53E5\u67C4" }, referenceHandle: { type: "string", description: "\u53C2\u7167\u5B9E\u4F53\u53E5\u67C4" } }, required: ["handle", "referenceHandle"] } },
|
|
3134
|
+
{ name: "select_all", description: "\u9009\u62E9\u5F53\u524D\u56FE\u5F62\u4E2D\u6240\u6709\u5B9E\u4F53\uFF0C\u8FD4\u56DE\u53E5\u67C4\u6570\u7EC4\u3002\u9002\u5408\u6279\u91CF\u64CD\u4F5C\u524D\u5168\u9009", inputSchema: { type: "object", properties: {} } },
|
|
3135
|
+
{ name: "select_last", description: "\u9009\u62E9\u6700\u540E\u521B\u5EFA\u7684\u4E00\u4E2A\u5B9E\u4F53\uFF0C\u8FD4\u56DE\u53E5\u67C4\u3002\u521A\u521B\u5EFA\u7684\u5B9E\u4F53\u60F3\u83B7\u53D6\u5176\u53E5\u67C4\u65F6\u8C03\u7528", inputSchema: { type: "object", properties: {} } },
|
|
3136
|
+
{ name: "select_by_color", description: "\u6309\u989C\u8272\u7D22\u5F15\u53F7\u9009\u62E9\u5B9E\u4F53\uFF0C\u8FD4\u56DE\u53E5\u67C4\u6570\u7EC4\u3002\u989C\u8272\u53F7\u8303\u56F4 1-255\uFF081=\u7EA2,2=\u9EC4,3=\u7EFF\u7B49\uFF09", inputSchema: { type: "object", properties: { colorIndex: { type: "integer", description: "\u989C\u8272\u7D22\u5F15\u53F7 (1-255)\u30021=Red,2=Yellow,3=Green,5=Blue,7=White/Black" } }, required: ["colorIndex"] } }
|
|
3127
3137
|
];
|
|
3128
3138
|
}
|
|
3129
3139
|
});
|
|
@@ -3135,44 +3145,44 @@ var init_layer_tools = __esm({
|
|
|
3135
3145
|
tools5 = [
|
|
3136
3146
|
{
|
|
3137
3147
|
name: "create_layer",
|
|
3138
|
-
description: "\u521B\u5EFA\u56FE\u5C42",
|
|
3148
|
+
description: '\u521B\u5EFA\u65B0\u56FE\u5C42\uFF0C\u53EF\u6307\u5B9A\u989C\u8272\u548C\u7EBF\u578B\u3002\u7528\u6237\u8981\u6C42"\u65B0\u5EFA\u56FE\u5C42/\u521B\u5EFA\u56FE\u5C42"\u65F6\u8C03\u7528\u3002\u989C\u8272\u53F7 1-255\uFF081\u7EA22\u9EC43\u7EFF5\u84DD7\u767D\uFF09',
|
|
3139
3149
|
inputSchema: {
|
|
3140
3150
|
type: "object",
|
|
3141
3151
|
properties: {
|
|
3142
|
-
name: { type: "string", description: "\u56FE\u5C42\u540D\u79F0" },
|
|
3143
|
-
color: { type: "string", description: "\u989C\u8272\u53F7\uFF081-255\uFF0C\u9ED8\u8BA47\uFF09" },
|
|
3144
|
-
linetype: { type: "string", description: "\u7EBF\u578B\u540D\u79F0\uFF08\u9ED8\u8BA4 Continuous\uFF09" }
|
|
3152
|
+
name: { type: "string", description: "\u56FE\u5C42\u540D\u79F0\u3002\u5E38\u7528\u547D\u540D: 0, \u6807\u6CE8, \u8F74\u7EBF, \u5899\u4F53, \u95E8\u7A97, \u6587\u5B57, \u586B\u5145" },
|
|
3153
|
+
color: { type: "string", description: "\u989C\u8272\u7D22\u5F15\u53F7\uFF081-255\uFF0C\u9ED8\u8BA47=\u767D/\u9ED1\uFF09\u30021=\u7EA2,2=\u9EC4,3=\u7EFF,4=\u9752,5=\u84DD,6=\u7D2B,7=\u767D/\u9ED1" },
|
|
3154
|
+
linetype: { type: "string", description: "\u7EBF\u578B\u540D\u79F0\uFF08\u9ED8\u8BA4 Continuous\uFF09\u3002\u5176\u4ED6: DASHED, CENTER, DOT, HIDDEN" }
|
|
3145
3155
|
},
|
|
3146
3156
|
required: ["name"]
|
|
3147
3157
|
}
|
|
3148
3158
|
},
|
|
3149
3159
|
{
|
|
3150
3160
|
name: "delete_layer",
|
|
3151
|
-
description: "\u5220\u9664\u56FE\u5C42",
|
|
3161
|
+
description: "\u5220\u9664\u6307\u5B9A\u56FE\u5C42\u3002\u53EA\u80FD\u5220\u9664\u7A7A\u56FE\u5C42\uFF08\u65E0\u5B9E\u4F53\u7684\u56FE\u5C42\uFF09\u3002\u5982\u9700\u5F3A\u5236\u5220\u9664\u8BF7\u5148\u79FB\u52A8\u5B9E\u4F53\u5230\u5176\u4ED6\u56FE\u5C42",
|
|
3152
3162
|
inputSchema: {
|
|
3153
3163
|
type: "object",
|
|
3154
3164
|
properties: {
|
|
3155
|
-
name: { type: "string", description: "\u56FE\u5C42\u540D\u79F0" }
|
|
3165
|
+
name: { type: "string", description: "\u8981\u5220\u9664\u7684\u56FE\u5C42\u540D\u79F0" }
|
|
3156
3166
|
},
|
|
3157
3167
|
required: ["name"]
|
|
3158
3168
|
}
|
|
3159
3169
|
},
|
|
3160
3170
|
{
|
|
3161
3171
|
name: "set_layer",
|
|
3162
|
-
description: "\
|
|
3172
|
+
description: "\u4FEE\u6539\u56FE\u5C42\u7684\u5C5E\u6027\u3002\u652F\u6301 color(\u989C\u8272\u53F7)\u3001linetype(\u7EBF\u578B\u540D)\u3001freeze(\u51BB\u7ED3)/thaw(\u89E3\u51BB)\u3001lock(\u9501\u5B9A)/unlock(\u89E3\u9501)",
|
|
3163
3173
|
inputSchema: {
|
|
3164
3174
|
type: "object",
|
|
3165
3175
|
properties: {
|
|
3166
3176
|
name: { type: "string", description: "\u56FE\u5C42\u540D\u79F0" },
|
|
3167
|
-
property: { type: "string", description: "\u5C5E\u6027: color, linetype, freeze, thaw, lock, unlock" },
|
|
3168
|
-
value: { type: "string", description: "\u5C5E\u6027\u503C" }
|
|
3177
|
+
property: { type: "string", description: "\u8981\u4FEE\u6539\u7684\u5C5E\u6027: color, linetype, freeze, thaw, lock, unlock" },
|
|
3178
|
+
value: { type: "string", description: "\u5C5E\u6027\u503C\uFF08color\u4F20\u6570\u5B571-255\uFF0Clinetype\u4F20\u7EBF\u578B\u540D\uFF0C\u5176\u4ED6\u4F20true/false\uFF09" }
|
|
3169
3179
|
},
|
|
3170
3180
|
required: ["name", "property"]
|
|
3171
3181
|
}
|
|
3172
3182
|
},
|
|
3173
3183
|
{
|
|
3174
3184
|
name: "set_current_layer",
|
|
3175
|
-
description:
|
|
3185
|
+
description: '\u5207\u6362\u5F53\u524D\u56FE\u5C42\u3002\u65B0\u521B\u5EFA\u7684\u5B9E\u4F53\u5C06\u81EA\u52A8\u4F4D\u4E8E\u6B64\u56FE\u5C42\u3002\u7528\u6237\u8BF4"\u5207\u5230XX\u56FE\u5C42"\u65F6\u8C03\u7528',
|
|
3176
3186
|
inputSchema: {
|
|
3177
3187
|
type: "object",
|
|
3178
3188
|
properties: {
|
|
@@ -3181,13 +3191,13 @@ var init_layer_tools = __esm({
|
|
|
3181
3191
|
required: ["name"]
|
|
3182
3192
|
}
|
|
3183
3193
|
},
|
|
3184
|
-
{ name: "layer_isolate", description: "\u9694\u79BB\u56FE\u5C42\
|
|
3185
|
-
{ name: "layer_unisolate", description: "\u53D6\u6D88\
|
|
3186
|
-
{ name: "layer_freeze_all", description: "\u51BB\u7ED3\u6240\u6709\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3187
|
-
{ name: "layer_thaw_all", description: "\u89E3\u51BB\u6240\u6709\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3188
|
-
{ name: "layer_lock_all", description: "\u9501\u5B9A\u6240\u6709\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3189
|
-
{ name: "layer_unlock_all", description: "\u89E3\u9501\u6240\u6709\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3190
|
-
{ name: "layer_merge", description:
|
|
3194
|
+
{ name: "layer_isolate", description: "\u9694\u79BB\u6307\u5B9A\u56FE\u5C42\u2014\u2014\u5173\u95ED\u5176\u4ED6\u6240\u6709\u56FE\u5C42\uFF0C\u53EA\u663E\u793A\u8BE5\u56FE\u5C42\u4E0A\u7684\u5B9E\u4F53\u3002\u67E5\u770B\u7279\u5B9A\u56FE\u5C42\u65F6\u8C03\u7528", inputSchema: { type: "object", properties: { name: { type: "string", description: "\u8981\u4FDD\u7559\u663E\u793A\u7684\u56FE\u5C42\u540D\u79F0" } }, required: ["name"] } },
|
|
3195
|
+
{ name: "layer_unisolate", description: "\u53D6\u6D88\u9694\u79BB\u72B6\u6001\uFF0C\u6062\u590D\u4E4B\u524D\u5173\u95ED\u7684\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3196
|
+
{ name: "layer_freeze_all", description: "\u51BB\u7ED3\u6240\u6709\u56FE\u5C42\uFF08\u4E0D\u663E\u793A\u4E14\u4E0D\u53C2\u4E0E\u91CD\u751F\u6210\uFF09\u3002\u9002\u5408\u5927\u5E45\u63D0\u5347\u64CD\u4F5C\u6027\u80FD", inputSchema: { type: "object", properties: {} } },
|
|
3197
|
+
{ name: "layer_thaw_all", description: "\u89E3\u51BB\u6240\u6709\u4E4B\u524D\u51BB\u7ED3\u7684\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3198
|
+
{ name: "layer_lock_all", description: "\u9501\u5B9A\u6240\u6709\u56FE\u5C42\uFF08\u53EF\u89C1\u4F46\u4E0D\u53EF\u7F16\u8F91\uFF0C\u9632\u6B62\u8BEF\u64CD\u4F5C\uFF09", inputSchema: { type: "object", properties: {} } },
|
|
3199
|
+
{ name: "layer_unlock_all", description: "\u89E3\u9501\u6240\u6709\u4E4B\u524D\u9501\u5B9A\u7684\u56FE\u5C42", inputSchema: { type: "object", properties: {} } },
|
|
3200
|
+
{ name: "layer_merge", description: '\u5408\u5E76\u56FE\u5C42\uFF1A\u5C06\u6E90\u56FE\u5C42\u4E2D\u6240\u6709\u5B9E\u4F53\u79FB\u52A8\u5230\u76EE\u6807\u56FE\u5C42\uFF0C\u7136\u540E\u5220\u9664\u6E90\u56FE\u5C42\u3002\u7528\u6237\u8BF4"\u5408\u5E76\u56FE\u5C42"\u65F6\u8C03\u7528', inputSchema: { type: "object", properties: { sourceName: { type: "string", description: "\u6E90\u56FE\u5C42\u540D\u79F0\uFF08\u5C06\u88AB\u5220\u9664\uFF09" }, targetName: { type: "string", description: "\u76EE\u6807\u56FE\u5C42\u540D\u79F0\uFF08\u63A5\u6536\u5B9E\u4F53\uFF09" } }, required: ["sourceName", "targetName"] } }
|
|
3191
3201
|
];
|
|
3192
3202
|
}
|
|
3193
3203
|
});
|
|
@@ -3199,7 +3209,7 @@ var init_block_tools = __esm({
|
|
|
3199
3209
|
tools6 = [
|
|
3200
3210
|
{
|
|
3201
3211
|
name: "create_block",
|
|
3202
|
-
description: "\u521B\u5EFA\u5757\u5B9A\u4E49",
|
|
3212
|
+
description: "\u521B\u5EFA\u5757\u5B9A\u4E49\uFF08\u5C06\u9009\u4E2D\u7684\u5B9E\u4F53\u7EC4\u5408\u4E3A\u5757\uFF09\u3002\u5757\u540D\u5168\u5C40\u552F\u4E00\uFF0C\u91CD\u590D\u4F1A\u8986\u76D6",
|
|
3203
3213
|
inputSchema: {
|
|
3204
3214
|
type: "object",
|
|
3205
3215
|
properties: {
|
|
@@ -3211,7 +3221,7 @@ var init_block_tools = __esm({
|
|
|
3211
3221
|
},
|
|
3212
3222
|
{
|
|
3213
3223
|
name: "insert_block",
|
|
3214
|
-
description: "\u63D2\u5165\u5757",
|
|
3224
|
+
description: '\u63D2\u5165\u5757\u5F15\u7528\u5230\u56FE\u5F62\u3002\u7528\u6237\u8BF4"\u653E\u4E2A\u5757/\u63D2\u5165\u56FE\u5757"\u65F6\u8C03\u7528\u3002\u9700\u5148\u9009\u597D\u63D2\u5165\u70B9\u548C\u6BD4\u4F8B',
|
|
3215
3225
|
inputSchema: {
|
|
3216
3226
|
type: "object",
|
|
3217
3227
|
properties: {
|
|
@@ -3225,12 +3235,12 @@ var init_block_tools = __esm({
|
|
|
3225
3235
|
},
|
|
3226
3236
|
{
|
|
3227
3237
|
name: "get_blocks",
|
|
3228
|
-
description:
|
|
3238
|
+
description: '\u5217\u51FA\u5F53\u524D DWG \u4E2D\u6240\u6709\u5757\u5B9A\u4E49\u7684\u540D\u79F0\u5217\u8868\u3002\u7528\u6237\u95EE"\u6709\u54EA\u4E9B\u5757"\u65F6\u8C03\u7528',
|
|
3229
3239
|
inputSchema: { type: "object", properties: {} }
|
|
3230
3240
|
},
|
|
3231
3241
|
{
|
|
3232
3242
|
name: "explode_block",
|
|
3233
|
-
description:
|
|
3243
|
+
description: '\u70B8\u5F00\uFF08\u5206\u89E3\uFF09\u5757\u5F15\u7528\u4E3A\u72EC\u7ACB\u5B9E\u4F53\u3002\u7528\u6237\u8BF4"\u70B8\u5F00\u5757/\u5206\u89E3\u5757"\u65F6\u8C03\u7528\u3002\u4E0D\u53EF\u9006',
|
|
3234
3244
|
inputSchema: {
|
|
3235
3245
|
type: "object",
|
|
3236
3246
|
properties: {
|
|
@@ -3241,7 +3251,7 @@ var init_block_tools = __esm({
|
|
|
3241
3251
|
},
|
|
3242
3252
|
{
|
|
3243
3253
|
name: "batch_get_block_attributes",
|
|
3244
|
-
description: "\u6279\u91CF\u83B7\u53D6\u5757\u5C5E\u6027\
|
|
3254
|
+
description: "\u6279\u91CF\u83B7\u53D6\u6240\u6709\u5757\u53C2\u7167\u7684\u5C5E\u6027\u503C\u3002\u6309\u5757\u540D\u548C/\u6216\u56FE\u5C42\u8FC7\u6EE4\u3002\u60F3\u67E5\u67D0\u7C7B\u5757\u7684\u5C5E\u6027\u65F6\u8C03\u7528",
|
|
3245
3255
|
inputSchema: {
|
|
3246
3256
|
type: "object",
|
|
3247
3257
|
properties: {
|
|
@@ -3252,7 +3262,7 @@ var init_block_tools = __esm({
|
|
|
3252
3262
|
},
|
|
3253
3263
|
{
|
|
3254
3264
|
name: "batch_set_block_attributes",
|
|
3255
|
-
description:
|
|
3265
|
+
description: '\u6279\u91CF\u4FEE\u6539\u591A\u4E2A\u5757\u53C2\u7167\u7684\u5C5E\u6027\u503C\u3002\u4F20\u5165 handle \u548C attributes \u5BF9\u8C61\u6570\u7EC4\u3002\u7528\u6237\u8BF4"\u6279\u91CF\u6539\u5757\u5C5E\u6027"\u65F6\u8C03\u7528',
|
|
3256
3266
|
inputSchema: {
|
|
3257
3267
|
type: "object",
|
|
3258
3268
|
properties: {
|
|
@@ -3272,7 +3282,7 @@ var init_drawing_tools = __esm({
|
|
|
3272
3282
|
tools7 = [
|
|
3273
3283
|
{
|
|
3274
3284
|
name: "open_dwg",
|
|
3275
|
-
description:
|
|
3285
|
+
description: '\u6253\u5F00\u6307\u5B9A\u7684 DWG \u6587\u4EF6\u3002\u7528\u6237\u8BF4"\u6253\u5F00\u56FE\u7EB8/\u6253\u5F00\u6587\u4EF6"\u65F6\u8C03\u7528\u3002\u9700\u63D0\u4F9B\u6587\u4EF6\u5B8C\u6574\u8DEF\u5F84',
|
|
3276
3286
|
inputSchema: {
|
|
3277
3287
|
type: "object",
|
|
3278
3288
|
properties: {
|
|
@@ -3283,7 +3293,7 @@ var init_drawing_tools = __esm({
|
|
|
3283
3293
|
},
|
|
3284
3294
|
{
|
|
3285
3295
|
name: "save_dwg",
|
|
3286
|
-
description:
|
|
3296
|
+
description: '\u4FDD\u5B58\u5F53\u524D DWG\u3002\u4E0D\u4F20 filePath \u5219\u4FDD\u5B58\u5F53\u524D\u6587\u4EF6\uFF1B\u4F20\u5165\u8DEF\u5F84\u5219\u53E6\u5B58\u4E3A\u65B0\u6587\u4EF6\u3002\u7528\u6237\u8BF4"\u4FDD\u5B58/\u53E6\u5B58\u4E3A"\u65F6\u8C03\u7528',
|
|
3287
3297
|
inputSchema: {
|
|
3288
3298
|
type: "object",
|
|
3289
3299
|
properties: {
|
|
@@ -3293,7 +3303,7 @@ var init_drawing_tools = __esm({
|
|
|
3293
3303
|
},
|
|
3294
3304
|
{
|
|
3295
3305
|
name: "export_pdf",
|
|
3296
|
-
description:
|
|
3306
|
+
description: '\u5C06\u6307\u5B9A\u5E03\u5C40\u5BFC\u51FA\u4E3A PDF \u6587\u4EF6\u3002\u7528\u6237\u8BF4"\u5BFC\u51FAPDF/\u8F6CPDF"\u65F6\u8C03\u7528\u3002\u9700\u6307\u5B9A\u8F93\u51FA\u8DEF\u5F84\u548C\u5E03\u5C40\u540D',
|
|
3297
3307
|
inputSchema: {
|
|
3298
3308
|
type: "object",
|
|
3299
3309
|
properties: {
|
|
@@ -3305,7 +3315,7 @@ var init_drawing_tools = __esm({
|
|
|
3305
3315
|
},
|
|
3306
3316
|
{
|
|
3307
3317
|
name: "close_dwg",
|
|
3308
|
-
description: "\u5173\u95ED\u5F53\u524D\
|
|
3318
|
+
description: "\u5173\u95ED\u5F53\u524D DWG \u6587\u6863\u3002save=true \u5148\u4FDD\u5B58\u518D\u5173\u95ED\uFF0Csave=false\uFF08\u9ED8\u8BA4\uFF09\u4E0D\u4FDD\u5B58\u76F4\u63A5\u5173",
|
|
3309
3319
|
inputSchema: {
|
|
3310
3320
|
type: "object",
|
|
3311
3321
|
properties: {
|
|
@@ -3315,7 +3325,7 @@ var init_drawing_tools = __esm({
|
|
|
3315
3325
|
},
|
|
3316
3326
|
{
|
|
3317
3327
|
name: "publish_layouts",
|
|
3318
|
-
description:
|
|
3328
|
+
description: '\u5C06\u591A\u4E2A\u5E03\u5C40\u6279\u91CF\u53D1\u5E03\u5230 PDF\u3002\u53EF\u5408\u5E76\u4E3A\u4E00\u4E2A\u6216\u591A\u4E2APDF\u3002\u7528\u6237\u8BF4"\u6279\u91CF\u5BFC\u51FA\u5E03\u5C40"\u65F6\u8C03\u7528',
|
|
3319
3329
|
inputSchema: {
|
|
3320
3330
|
type: "object",
|
|
3321
3331
|
properties: {
|
|
@@ -3327,9 +3337,9 @@ var init_drawing_tools = __esm({
|
|
|
3327
3337
|
required: ["layouts"]
|
|
3328
3338
|
}
|
|
3329
3339
|
},
|
|
3330
|
-
{ name: "export_svg", description: "\u5BFC\u51FA SVG \u6587\u4EF6", inputSchema: { type: "object", properties: { outputPath: { type: "string", description: "\u8F93\u51FA\u8DEF\u5F84" }, layout: { type: "string", description: "\u5E03\u5C40\u540D\u79F0(\u9ED8\u8BA4Model)" } }, required: ["outputPath"] } },
|
|
3331
|
-
{ name: "export_bmp", description: "\u5BFC\u51FA BMP \u56FE\u7247", inputSchema: { type: "object", properties: { outputPath: { type: "string", description: "\u8F93\u51FA\u8DEF\u5F84" } }, required: ["outputPath"] } },
|
|
3332
|
-
{ name: "export_stl", description: "\u5BFC\u51FA STL \u6587\u4EF6
|
|
3340
|
+
{ name: "export_svg", description: "\u5BFC\u51FA\u5E03\u5C40\u4E3A SVG \u77E2\u91CF\u56FE\u6587\u4EF6", inputSchema: { type: "object", properties: { outputPath: { type: "string", description: "\u8F93\u51FA\u6587\u4EF6\u8DEF\u5F84\uFF08.svg\uFF09" }, layout: { type: "string", description: "\u5E03\u5C40\u540D\u79F0(\u9ED8\u8BA4Model)" } }, required: ["outputPath"] } },
|
|
3341
|
+
{ name: "export_bmp", description: "\u5BFC\u51FA\u5F53\u524D\u89C6\u56FE\u4E3A BMP \u4F4D\u56FE\u56FE\u7247", inputSchema: { type: "object", properties: { outputPath: { type: "string", description: "\u8F93\u51FA\u6587\u4EF6\u8DEF\u5F84\uFF08.bmp\uFF09" } }, required: ["outputPath"] } },
|
|
3342
|
+
{ name: "export_stl", description: "\u5BFC\u51FA 3D \u5B9E\u4F53\u4E3A STL \u6587\u4EF6\uFF083D\u6253\u5370\u683C\u5F0F\uFF09\u3002\u6307\u5B9A handle \u5BFC\u51FA\u5355\u4E2A\u5B9E\u4F53\uFF0C\u4E0D\u4F20\u5219\u5BFC\u51FA\u6240\u6709 3D \u5B9E\u4F53", inputSchema: { type: "object", properties: { outputPath: { type: "string", description: "\u8F93\u51FA\u6587\u4EF6\u8DEF\u5F84\uFF08.stl\uFF09" }, handle: { type: "string", description: "3D\u5B9E\u4F53\u53E5\u67C4(\u53EF\u9009\uFF0C\u5BFC\u51FA\u6240\u6709\u5B9E\u4F53\u5219\u7559\u7A7A)" } }, required: ["outputPath"] } }
|
|
3333
3343
|
];
|
|
3334
3344
|
}
|
|
3335
3345
|
});
|
|
@@ -3341,7 +3351,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3341
3351
|
tools8 = [
|
|
3342
3352
|
{
|
|
3343
3353
|
name: "create_dimension",
|
|
3344
|
-
description: "\u521B\u5EFA\u6807\u6CE8 (
|
|
3354
|
+
description: "\u521B\u5EFA\u5C3A\u5BF8\u6807\u6CE8\u3002\u652F\u6301\u7C7B\u578B: ALIGNED(\u5BF9\u9F50)/LINEAR(\u7EBF\u6027)/ORDINATE(\u5750\u6807)/RADIAL(\u534A\u5F84)/DIAMETER(\u76F4\u5F84)/ANGULAR(\u89D2\u5EA6)\u3002\u5148\u9009\u7C7B\u578B\u518D\u7ED9\u70B9\u5750\u6807",
|
|
3345
3355
|
inputSchema: {
|
|
3346
3356
|
type: "object",
|
|
3347
3357
|
properties: {
|
|
@@ -3354,7 +3364,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3354
3364
|
},
|
|
3355
3365
|
{
|
|
3356
3366
|
name: "get_dimension",
|
|
3357
|
-
description:
|
|
3367
|
+
description: '\u8BFB\u53D6\u6807\u6CE8\u5B9E\u4F53\u7684\u6D4B\u91CF\u503C\u3002\u7528\u6237\u95EE"\u8FD9\u4E2A\u6807\u4E86\u591A\u5C11"\u65F6\u8C03\u7528',
|
|
3358
3368
|
inputSchema: {
|
|
3359
3369
|
type: "object",
|
|
3360
3370
|
properties: {
|
|
@@ -3365,7 +3375,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3365
3375
|
},
|
|
3366
3376
|
{
|
|
3367
3377
|
name: "create_hatch",
|
|
3368
|
-
description: "\u521B\u5EFA\u56FE\u6848\u586B\u5145",
|
|
3378
|
+
description: "\u521B\u5EFA\u56FE\u6848\u586B\u5145\u3002\u586B\u5145\u56FE\u6848\u5982 ANSI31(\u659C\u7EBF), ANSI32(\u4EA4\u53C9\u659C\u7EBF), BRICK(\u7816), DOTS(\u70B9), AR-CONC(\u6DF7\u51DD\u571F), SOLID(\u5B9E\u5FC3)",
|
|
3369
3379
|
inputSchema: {
|
|
3370
3380
|
type: "object",
|
|
3371
3381
|
properties: {
|
|
@@ -3379,7 +3389,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3379
3389
|
},
|
|
3380
3390
|
{
|
|
3381
3391
|
name: "set_hatch",
|
|
3382
|
-
description: "\
|
|
3392
|
+
description: "\u4FEE\u6539\u586B\u5145\u5C5E\u6027\uFF1Apattern(\u56FE\u6848\u540D)\u3001scale(\u6BD4\u4F8B)\u3001angle(\u89D2\u5EA6)\u3001color(\u989C\u8272\u53F7)",
|
|
3383
3393
|
inputSchema: {
|
|
3384
3394
|
type: "object",
|
|
3385
3395
|
properties: {
|
|
@@ -3391,7 +3401,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3391
3401
|
},
|
|
3392
3402
|
{
|
|
3393
3403
|
name: "get_block_attributes",
|
|
3394
|
-
description: "\u83B7\u53D6\u5757\u5C5E\u6027",
|
|
3404
|
+
description: "\u83B7\u53D6\u5355\u4E2A\u5757\u53C2\u7167\u7684\u6240\u6709\u5C5E\u6027\u6807\u7B7E\u548C\u503C\u3002\u5BF9\u6BD4 batch_get_block_attributes \u53EA\u67E5\u5355\u4E2A",
|
|
3395
3405
|
inputSchema: {
|
|
3396
3406
|
type: "object",
|
|
3397
3407
|
properties: {
|
|
@@ -3402,7 +3412,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3402
3412
|
},
|
|
3403
3413
|
{
|
|
3404
3414
|
name: "set_block_attribute",
|
|
3405
|
-
description: "\
|
|
3415
|
+
description: "\u4FEE\u6539\u5355\u4E2A\u5757\u53C2\u7167\u7684\u6307\u5B9A\u5C5E\u6027\u6807\u7B7E\u7684\u503C\u3002\u5BF9\u6BD4 batch_set_block_attributes \u53EA\u6539\u5355\u4E2A",
|
|
3406
3416
|
inputSchema: {
|
|
3407
3417
|
type: "object",
|
|
3408
3418
|
properties: {
|
|
@@ -3415,12 +3425,12 @@ var init_dim_hatch_tools = __esm({
|
|
|
3415
3425
|
},
|
|
3416
3426
|
{
|
|
3417
3427
|
name: "zoom_extents",
|
|
3418
|
-
description:
|
|
3428
|
+
description: '\u7F29\u653E\u81F3\u6240\u6709\u5B9E\u4F53\u7684\u6574\u4F53\u8303\u56F4\uFF08\u663E\u793A\u5168\u90E8\u56FE\u5F62\uFF09\u3002\u7528\u6237\u8BF4"\u5168\u5C4F/\u7F29\u653E\u5168\u90E8/\u770B\u5168\u90E8"\u65F6\u8C03\u7528',
|
|
3419
3429
|
inputSchema: { type: "object", properties: {} }
|
|
3420
3430
|
},
|
|
3421
3431
|
{
|
|
3422
3432
|
name: "zoom_window",
|
|
3423
|
-
description:
|
|
3433
|
+
description: '\u7F29\u653E\u81F3\u6307\u5B9A\u7A97\u53E3\u533A\u57DF\u3002\u7528\u6237\u8BF4"\u653E\u5927\u67D0\u533A\u57DF/\u770B\u8FD9\u91CC"\u65F6\u8C03\u7528\u3002p1,p2\u4E3A\u5BF9\u89D2\u70B9',
|
|
3424
3434
|
inputSchema: {
|
|
3425
3435
|
type: "object",
|
|
3426
3436
|
properties: {
|
|
@@ -3432,7 +3442,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3432
3442
|
},
|
|
3433
3443
|
{
|
|
3434
3444
|
name: "create_named_view",
|
|
3435
|
-
description: "\
|
|
3445
|
+
description: "\u4FDD\u5B58\u5F53\u524D\u89C6\u56FE\u4E3A\u547D\u540D\u89C6\u56FE\uFF0C\u65B9\u4FBF\u4E4B\u540E\u5FEB\u901F\u6062\u590D",
|
|
3436
3446
|
inputSchema: {
|
|
3437
3447
|
type: "object",
|
|
3438
3448
|
properties: {
|
|
@@ -3444,7 +3454,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3444
3454
|
},
|
|
3445
3455
|
{
|
|
3446
3456
|
name: "restore_named_view",
|
|
3447
|
-
description:
|
|
3457
|
+
description: '\u5207\u6362\u5230\u4E4B\u524D\u4FDD\u5B58\u7684\u547D\u540D\u89C6\u56FE\u3002\u7528\u6237\u8BF4"\u5207\u6362\u5230XX\u89C6\u56FE"\u65F6\u8C03\u7528',
|
|
3448
3458
|
inputSchema: {
|
|
3449
3459
|
type: "object",
|
|
3450
3460
|
properties: {
|
|
@@ -3455,12 +3465,12 @@ var init_dim_hatch_tools = __esm({
|
|
|
3455
3465
|
},
|
|
3456
3466
|
{
|
|
3457
3467
|
name: "list_named_views",
|
|
3458
|
-
description: "\u5217\u51FA\u6240\u6709\u547D\u540D\u89C6\u56FE",
|
|
3468
|
+
description: "\u5217\u51FA\u5F53\u524D DWG \u4E2D\u6240\u6709\u547D\u540D\u89C6\u56FE\u7684\u540D\u79F0\u5217\u8868",
|
|
3459
3469
|
inputSchema: { type: "object", properties: {} }
|
|
3460
3470
|
},
|
|
3461
3471
|
{
|
|
3462
3472
|
name: "export_dxf",
|
|
3463
|
-
description: "\u5BFC\u51FA DXF \u6587\u4EF6",
|
|
3473
|
+
description: "\u5BFC\u51FA\u4E3A DXF \u4EA4\u6362\u6587\u4EF6\u3002version \u53EF\u9009 R2000/R2004/R2007/R2010/R2015/R2018",
|
|
3464
3474
|
inputSchema: {
|
|
3465
3475
|
type: "object",
|
|
3466
3476
|
properties: {
|
|
@@ -3472,7 +3482,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3472
3482
|
},
|
|
3473
3483
|
{
|
|
3474
3484
|
name: "export_dwf",
|
|
3475
|
-
description: "\u5BFC\u51FA DWF \
|
|
3485
|
+
description: "\u5BFC\u51FA\u4E3A DWF \u4E09\u7EF4/web \u53D1\u5E03\u683C\u5F0F",
|
|
3476
3486
|
inputSchema: {
|
|
3477
3487
|
type: "object",
|
|
3478
3488
|
properties: {
|
|
@@ -3483,7 +3493,7 @@ var init_dim_hatch_tools = __esm({
|
|
|
3483
3493
|
},
|
|
3484
3494
|
{
|
|
3485
3495
|
name: "batch_set_layer",
|
|
3486
|
-
description:
|
|
3496
|
+
description: '\u6279\u91CF\u79FB\u52A8\u591A\u4E2A\u5B9E\u4F53\u5230\u6307\u5B9A\u56FE\u5C42\u3002\u4F20\u5165\u53E5\u67C4\u6570\u7EC4\u548C\u76EE\u6807\u56FE\u5C42\u540D\u3002\u7528\u6237\u8BF4"\u628A\u8FD9\u4E9B\u79FB\u5230XX\u56FE\u5C42"\u65F6\u8C03\u7528',
|
|
3487
3497
|
inputSchema: {
|
|
3488
3498
|
type: "object",
|
|
3489
3499
|
properties: {
|
|
@@ -3504,7 +3514,7 @@ var init_ucs_layout_tools = __esm({
|
|
|
3504
3514
|
tools9 = [
|
|
3505
3515
|
{
|
|
3506
3516
|
name: "create_ucs",
|
|
3507
|
-
description:
|
|
3517
|
+
description: '\u521B\u5EFA\u7528\u6237\u5750\u6807\u7CFB(UCS)\u3002\u6307\u5B9A\u539F\u70B9\u3001X\u8F74\u548CY\u8F74\u65B9\u5411\u3002\u7528\u6237\u8BF4"\u5EFA\u5750\u6807\u7CFB/\u8BBEUCS"\u65F6\u8C03\u7528',
|
|
3508
3518
|
inputSchema: {
|
|
3509
3519
|
type: "object",
|
|
3510
3520
|
properties: {
|
|
@@ -3518,7 +3528,7 @@ var init_ucs_layout_tools = __esm({
|
|
|
3518
3528
|
},
|
|
3519
3529
|
{
|
|
3520
3530
|
name: "set_ucs",
|
|
3521
|
-
description:
|
|
3531
|
+
description: '\u5207\u6362\u5230\u4E4B\u524D\u521B\u5EFA\u7684 UCS\u3002\u7528\u6237\u8BF4"\u5207\u6362\u5230XX\u5750\u6807\u7CFB"\u65F6\u8C03\u7528',
|
|
3522
3532
|
inputSchema: {
|
|
3523
3533
|
type: "object",
|
|
3524
3534
|
properties: {
|
|
@@ -3529,12 +3539,12 @@ var init_ucs_layout_tools = __esm({
|
|
|
3529
3539
|
},
|
|
3530
3540
|
{
|
|
3531
3541
|
name: "list_ucs",
|
|
3532
|
-
description: "\u5217\u51FA\u6240\u6709 UCS",
|
|
3542
|
+
description: "\u5217\u51FA\u5F53\u524D\u56FE\u5F62\u4E2D\u6240\u6709\u5DF2\u5B9A\u4E49\u7684 UCS \u540D\u79F0",
|
|
3533
3543
|
inputSchema: { type: "object", properties: {} }
|
|
3534
3544
|
},
|
|
3535
3545
|
{
|
|
3536
3546
|
name: "delete_ucs",
|
|
3537
|
-
description: "\u5220\u9664 UCS",
|
|
3547
|
+
description: "\u5220\u9664\u6307\u5B9A\u7684\u5DF2\u547D\u540D UCS",
|
|
3538
3548
|
inputSchema: {
|
|
3539
3549
|
type: "object",
|
|
3540
3550
|
properties: {
|
|
@@ -3545,12 +3555,12 @@ var init_ucs_layout_tools = __esm({
|
|
|
3545
3555
|
},
|
|
3546
3556
|
{
|
|
3547
3557
|
name: "get_current_ucs",
|
|
3548
|
-
description: "\
|
|
3558
|
+
description: "\u67E5\u8BE2\u5F53\u524D\u6B63\u5728\u4F7F\u7528\u7684 UCS \u540D\u79F0",
|
|
3549
3559
|
inputSchema: { type: "object", properties: {} }
|
|
3550
3560
|
},
|
|
3551
3561
|
{
|
|
3552
3562
|
name: "create_layout",
|
|
3553
|
-
description:
|
|
3563
|
+
description: '\u521B\u5EFA\u65B0\u5E03\u5C40\uFF08\u56FE\u7EB8\u7A7A\u95F4\uFF09\u3002\u7528\u6237\u8BF4"\u65B0\u5EFA\u5E03\u5C40/\u65B0\u5EFA\u56FE\u7EB8"\u65F6\u8C03\u7528',
|
|
3554
3564
|
inputSchema: {
|
|
3555
3565
|
type: "object",
|
|
3556
3566
|
properties: {
|
|
@@ -3561,7 +3571,7 @@ var init_ucs_layout_tools = __esm({
|
|
|
3561
3571
|
},
|
|
3562
3572
|
{
|
|
3563
3573
|
name: "set_layout",
|
|
3564
|
-
description:
|
|
3574
|
+
description: '\u5207\u6362\u5230\u6307\u5B9A\u5E03\u5C40\uFF08\u56FE\u7EB8\u7A7A\u95F4\uFF09\u3002\u7528\u6237\u8BF4"\u5207\u6362\u5230XX\u5E03\u5C40/\u770B\u5E03\u5C40"\u65F6\u8C03\u7528',
|
|
3565
3575
|
inputSchema: {
|
|
3566
3576
|
type: "object",
|
|
3567
3577
|
properties: {
|
|
@@ -3572,12 +3582,12 @@ var init_ucs_layout_tools = __esm({
|
|
|
3572
3582
|
},
|
|
3573
3583
|
{
|
|
3574
3584
|
name: "list_layouts",
|
|
3575
|
-
description: "\u5217\u51FA\u6240\u6709\u5E03\u5C40",
|
|
3585
|
+
description: "\u5217\u51FA\u5F53\u524D DWG \u4E2D\u6240\u6709\u5E03\u5C40\u540D\u79F0\uFF08\u542B Model\uFF09",
|
|
3576
3586
|
inputSchema: { type: "object", properties: {} }
|
|
3577
3587
|
},
|
|
3578
3588
|
{
|
|
3579
3589
|
name: "delete_layout",
|
|
3580
|
-
description: "\u5220\u9664\u5E03\u5C40",
|
|
3590
|
+
description: "\u5220\u9664\u6307\u5B9A\u5E03\u5C40\uFF08\u4E0D\u80FD\u5220\u9664 Model\uFF09",
|
|
3581
3591
|
inputSchema: {
|
|
3582
3592
|
type: "object",
|
|
3583
3593
|
properties: {
|
|
@@ -3588,12 +3598,12 @@ var init_ucs_layout_tools = __esm({
|
|
|
3588
3598
|
},
|
|
3589
3599
|
{
|
|
3590
3600
|
name: "get_current_layout",
|
|
3591
|
-
description: "\
|
|
3601
|
+
description: "\u67E5\u8BE2\u5F53\u524D\u6B63\u5728\u5DE5\u4F5C\u7684\u5E03\u5C40\u540D\u79F0\uFF08Model \u6216\u5E03\u5C40\u540D\uFF09",
|
|
3592
3602
|
inputSchema: { type: "object", properties: {} }
|
|
3593
3603
|
},
|
|
3594
3604
|
{
|
|
3595
3605
|
name: "rename_layout",
|
|
3596
|
-
description: "\u91CD\u547D\u540D\u5E03\u5C40",
|
|
3606
|
+
description: '\u7ED9\u5E03\u5C40\u6539\u540D\u5B57\u3002\u7528\u6237\u8BF4"\u91CD\u547D\u540D\u5E03\u5C40"\u65F6\u8C03\u7528',
|
|
3597
3607
|
inputSchema: {
|
|
3598
3608
|
type: "object",
|
|
3599
3609
|
properties: {
|
|
@@ -3614,7 +3624,7 @@ var init_query_print_tools = __esm({
|
|
|
3614
3624
|
tools10 = [
|
|
3615
3625
|
{
|
|
3616
3626
|
name: "plot_to_pdf",
|
|
3617
|
-
description:
|
|
3627
|
+
description: '\u5C06\u5E03\u5C40\u6253\u5370\u5230 PDF \u6587\u4EF6\u3002\u53EF\u8BBE\u7F6E\u56FE\u7EB8\u5C3A\u5BF8(A4/A3/A2/A1/A0)\u3001\u6BD4\u4F8B\u548C\u65B9\u5411\u3002\u7528\u6237\u8BF4"\u6253\u5370PDF"\u65F6\u8C03\u7528',
|
|
3618
3628
|
inputSchema: {
|
|
3619
3629
|
type: "object",
|
|
3620
3630
|
properties: {
|
|
@@ -3629,7 +3639,7 @@ var init_query_print_tools = __esm({
|
|
|
3629
3639
|
},
|
|
3630
3640
|
{
|
|
3631
3641
|
name: "plot_to_printer",
|
|
3632
|
-
description: "\u6253\u5370\
|
|
3642
|
+
description: "\u5C06\u5E03\u5C40\u53D1\u9001\u5230\u5B9E\u4F53\u6253\u5370\u673A\u6253\u5370\u3002\u9700\u5148\u77E5\u9053\u6253\u5370\u673A\u540D\u79F0\uFF08\u7528 plot_device_management action=list \u67E5\u770B\uFF09",
|
|
3633
3643
|
inputSchema: {
|
|
3634
3644
|
type: "object",
|
|
3635
3645
|
properties: {
|
|
@@ -3641,7 +3651,7 @@ var init_query_print_tools = __esm({
|
|
|
3641
3651
|
},
|
|
3642
3652
|
{
|
|
3643
3653
|
name: "create_group",
|
|
3644
|
-
description:
|
|
3654
|
+
description: '\u5C06\u591A\u4E2A\u5B9E\u4F53\u7F16\u4E3A\u4E00\u7EC4\uFF08GROUP\uFF09\uFF0C\u65B9\u4FBF\u6574\u4F53\u9009\u62E9\u548C\u64CD\u4F5C\u3002\u7528\u6237\u8BF4"\u7F16\u7EC4/\u6210\u7EC4"\u65F6\u8C03\u7528',
|
|
3645
3655
|
inputSchema: {
|
|
3646
3656
|
type: "object",
|
|
3647
3657
|
properties: {
|
|
@@ -3653,7 +3663,7 @@ var init_query_print_tools = __esm({
|
|
|
3653
3663
|
},
|
|
3654
3664
|
{
|
|
3655
3665
|
name: "delete_group",
|
|
3656
|
-
description: "\u5220\u9664\u7EC4",
|
|
3666
|
+
description: "\u5220\u9664\u6307\u5B9A\u7684\u7EC4\uFF08\u4E0D\u89E3\u6563\u7EC4\u5185\u5B9E\u4F53\uFF0C\u4EC5\u5220\u9664\u7EC4\u5B9A\u4E49\uFF09",
|
|
3657
3667
|
inputSchema: {
|
|
3658
3668
|
type: "object",
|
|
3659
3669
|
properties: {
|
|
@@ -3664,12 +3674,12 @@ var init_query_print_tools = __esm({
|
|
|
3664
3674
|
},
|
|
3665
3675
|
{
|
|
3666
3676
|
name: "list_groups",
|
|
3667
|
-
description: "\u5217\u51FA\u6240\u6709\u7EC4",
|
|
3677
|
+
description: "\u5217\u51FA\u5F53\u524D DWG \u4E2D\u6240\u6709\u5DF2\u547D\u540D\u7684\u7EC4\u540D\u79F0",
|
|
3668
3678
|
inputSchema: { type: "object", properties: {} }
|
|
3669
3679
|
},
|
|
3670
3680
|
{
|
|
3671
3681
|
name: "get_group_entities",
|
|
3672
|
-
description: "\u83B7\u53D6\u7EC4\
|
|
3682
|
+
description: "\u83B7\u53D6\u6307\u5B9A\u7EC4\u4E2D\u5305\u542B\u7684\u6240\u6709\u5B9E\u4F53\u53E5\u67C4\u5217\u8868",
|
|
3673
3683
|
inputSchema: {
|
|
3674
3684
|
type: "object",
|
|
3675
3685
|
properties: {
|
|
@@ -3680,7 +3690,7 @@ var init_query_print_tools = __esm({
|
|
|
3680
3690
|
},
|
|
3681
3691
|
{
|
|
3682
3692
|
name: "measure_distance",
|
|
3683
|
-
description:
|
|
3693
|
+
description: '\u6D4B\u91CF CAD \u4E2D\u4E24\u70B9\u95F4\u7684\u8DDD\u79BB\u3002\u7528\u6237\u95EE"\u591A\u957F/\u591A\u8FDC/\u95F4\u8DDD\u591A\u5C11"\u65F6\u8C03\u7528',
|
|
3684
3694
|
inputSchema: {
|
|
3685
3695
|
type: "object",
|
|
3686
3696
|
properties: {
|
|
@@ -3692,7 +3702,7 @@ var init_query_print_tools = __esm({
|
|
|
3692
3702
|
},
|
|
3693
3703
|
{
|
|
3694
3704
|
name: "measure_area",
|
|
3695
|
-
description:
|
|
3705
|
+
description: '\u6D4B\u91CF\u591A\u8FB9\u5F62\u56F4\u5408\u533A\u57DF\u7684\u9762\u79EF\u548C\u5468\u957F\u3002\u7528\u6237\u95EE"\u9762\u79EF\u591A\u5C11"\u65F6\u8C03\u7528',
|
|
3696
3706
|
inputSchema: {
|
|
3697
3707
|
type: "object",
|
|
3698
3708
|
properties: {
|
|
@@ -3702,7 +3712,7 @@ var init_query_print_tools = __esm({
|
|
|
3702
3712
|
},
|
|
3703
3713
|
{
|
|
3704
3714
|
name: "get_entity_info",
|
|
3705
|
-
description: "\u83B7\u53D6\u5B9E\u4F53\u8BE6\u7EC6\u4FE1\u606F",
|
|
3715
|
+
description: "\u83B7\u53D6\u5B9E\u4F53\u7684\u8BE6\u7EC6 DXF \u6570\u636E\uFF08\u542B\u6240\u6709\u7EC4\u7801\uFF09\u3002\u6BD4 get_entity \u4FE1\u606F\u66F4\u5168",
|
|
3706
3716
|
inputSchema: {
|
|
3707
3717
|
type: "object",
|
|
3708
3718
|
properties: {
|
|
@@ -3711,10 +3721,10 @@ var init_query_print_tools = __esm({
|
|
|
3711
3721
|
required: ["handle"]
|
|
3712
3722
|
}
|
|
3713
3723
|
},
|
|
3714
|
-
{ name: "create_page_setup", description:
|
|
3715
|
-
{ name: "list_page_setups", description: "\u5217\u51FA\u6240\u6709\u9875\u9762\u8BBE\u7F6E", inputSchema: { type: "object", properties: {} } },
|
|
3716
|
-
{ name: "set_page_setup", description:
|
|
3717
|
-
{ name: "import_page_setup", description: "\u4ECE\
|
|
3724
|
+
{ name: "create_page_setup", description: '\u521B\u5EFA\u9875\u9762\u8BBE\u7F6E\uFF08\u6253\u5370\u914D\u7F6E\u6A21\u677F\uFF09\u3002\u6307\u5B9A\u6253\u5370\u673A\u3001\u7EB8\u5F20\u3001\u65B9\u5411\u548C\u6BD4\u4F8B\u3002\u7528\u6237\u8BF4"\u8BBE\u7F6E\u9875\u9762/\u6253\u5370\u8BBE\u7F6E"\u65F6\u8C03\u7528', inputSchema: { type: "object", properties: { name: { type: "string", description: "\u9875\u9762\u8BBE\u7F6E\u540D\u79F0" }, printer: { type: "string", description: "\u6253\u5370\u673A\u540D\u79F0(\u9ED8\u8BA4DWG To PDF.pc3)" }, paperSize: { type: "string", description: "\u7EB8\u5F20\u5927\u5C0F(\u9ED8\u8BA4A4)\u3002\u53EF\u9009: A0, A1, A2, A3, A4, A5, Letter, Legal, Tabloid" }, orientation: { type: "string", description: "\u65B9\u5411: Portrait(\u7EB5\u5411) / Landscape(\u6A2A\u5411)" }, scale: { type: "string", description: "\u6253\u5370\u6BD4\u4F8B(\u9ED8\u8BA41:1)\u3002\u5982 1:50, 1:100, 2:1" } }, required: ["name"] } },
|
|
3725
|
+
{ name: "list_page_setups", description: "\u5217\u51FA\u6240\u6709\u5DF2\u4FDD\u5B58\u7684\u9875\u9762\u8BBE\u7F6E\uFF08\u6253\u5370\u914D\u7F6E\u6A21\u677F\uFF09", inputSchema: { type: "object", properties: {} } },
|
|
3726
|
+
{ name: "set_page_setup", description: '\u5C06\u9875\u9762\u8BBE\u7F6E\u5E94\u7528\u5230\u6307\u5B9A\u5E03\u5C40\uFF0C\u7528\u4E8E\u6253\u5370\u3002\u7528\u6237\u8BF4"\u7528XX\u8BBE\u7F6E\u6253\u5370\u6B64\u5E03\u5C40"\u65F6\u8C03\u7528', inputSchema: { type: "object", properties: { layout: { type: "string", description: "\u8981\u5E94\u7528\u8BBE\u7F6E\u7684\u5E03\u5C40\u540D\u79F0" }, pageSetupName: { type: "string", description: "\u9875\u9762\u8BBE\u7F6E\u540D\u79F0\uFF08\u5148 create_page_setup \u521B\u5EFA\uFF09" } }, required: ["layout", "pageSetupName"] } },
|
|
3727
|
+
{ name: "import_page_setup", description: "\u4ECE\u5176\u4ED6 DWG \u6587\u4EF6\u4E2D\u5BFC\u5165\u9875\u9762\u8BBE\u7F6E\u5230\u5F53\u524D\u56FE\u5F62", inputSchema: { type: "object", properties: { dwgPath: { type: "string", description: "\u6E90 DWG \u6587\u4EF6\u8DEF\u5F84" }, pageSetupName: { type: "string", description: "\u8981\u5BFC\u5165\u7684\u9875\u9762\u8BBE\u7F6E\u540D\u79F0(\u53EF\u9009,\u9ED8\u8BA4\u5168\u90E8)" } }, required: ["dwgPath"] } }
|
|
3718
3728
|
];
|
|
3719
3729
|
}
|
|
3720
3730
|
});
|
|
@@ -3726,7 +3736,7 @@ var init_batch_tools = __esm({
|
|
|
3726
3736
|
tools11 = [
|
|
3727
3737
|
{
|
|
3728
3738
|
name: "batch_rename",
|
|
3729
|
-
description: "\u6279\u91CF\u91CD\u547D\u540D\u5B9E\u4F53",
|
|
3739
|
+
description: "\u6279\u91CF\u91CD\u547D\u540D\u5B9E\u4F53\uFF08\u5982\u5757\u53C2\u7167\u3001\u6807\u6CE8\u7B49\uFF09\u3002{n} \u4F1A\u88AB\u66FF\u6362\u4E3A\u5E8F\u53F7",
|
|
3730
3740
|
inputSchema: {
|
|
3731
3741
|
type: "object",
|
|
3732
3742
|
properties: {
|
|
@@ -3739,7 +3749,7 @@ var init_batch_tools = __esm({
|
|
|
3739
3749
|
},
|
|
3740
3750
|
{
|
|
3741
3751
|
name: "batch_move",
|
|
3742
|
-
description: "\u6279\u91CF\u5C06\u5B9E\u4F53\u79FB\u52A8\u5230\
|
|
3752
|
+
description: "\u6279\u91CF\u5C06\u5B9E\u4F53\u79FB\u52A8\u5230\u53E6\u4E00\u4E2A\u56FE\u5C42\uFF08\u56FE\u5C42\u5F52\u5C5E\u53D8\u66F4\uFF0C\u975E\u51E0\u4F55\u4F4D\u79FB\uFF09\u3002fromLayer \u53EF\u9009\u8FC7\u6EE4\u6E90\u56FE\u5C42",
|
|
3743
3753
|
inputSchema: {
|
|
3744
3754
|
type: "object",
|
|
3745
3755
|
properties: {
|
|
@@ -3752,7 +3762,7 @@ var init_batch_tools = __esm({
|
|
|
3752
3762
|
},
|
|
3753
3763
|
{
|
|
3754
3764
|
name: "batch_copy",
|
|
3755
|
-
description: "\u6279\u91CF\u590D\u5236\u5B9E\u4F53\
|
|
3765
|
+
description: "\u6279\u91CF\u590D\u5236\u591A\u4E2A\u5B9E\u4F53\uFF0C\u6309 dx/dy/dz \u504F\u79FB\u751F\u6210\u526F\u672C",
|
|
3756
3766
|
inputSchema: {
|
|
3757
3767
|
type: "object",
|
|
3758
3768
|
properties: {
|
|
@@ -3766,7 +3776,7 @@ var init_batch_tools = __esm({
|
|
|
3766
3776
|
},
|
|
3767
3777
|
{
|
|
3768
3778
|
name: "batch_delete",
|
|
3769
|
-
description:
|
|
3779
|
+
description: '\u6279\u91CF\u5220\u9664\u591A\u4E2A\u5B9E\u4F53\u3002\u7528\u6237\u8BF4"\u5220\u9664\u8FD9\u4E9B/\u5168\u5220\u4E86"\u65F6\u8C03\u7528\u3002\u4E0D\u53EF\u64A4\u9500\uFF01',
|
|
3770
3780
|
inputSchema: {
|
|
3771
3781
|
type: "object",
|
|
3772
3782
|
properties: {
|
|
@@ -3777,7 +3787,7 @@ var init_batch_tools = __esm({
|
|
|
3777
3787
|
},
|
|
3778
3788
|
{
|
|
3779
3789
|
name: "batch_set_color",
|
|
3780
|
-
description: "\u6279\u91CF\
|
|
3790
|
+
description: "\u6279\u91CF\u4FEE\u6539\u591A\u4E2A\u5B9E\u4F53\u7684\u989C\u8272\u3002\u989C\u8272\u53F7 0=ByLayer, 1-255 \u5177\u4F53\u989C\u8272",
|
|
3781
3791
|
inputSchema: {
|
|
3782
3792
|
type: "object",
|
|
3783
3793
|
properties: {
|
|
@@ -3789,7 +3799,7 @@ var init_batch_tools = __esm({
|
|
|
3789
3799
|
},
|
|
3790
3800
|
{
|
|
3791
3801
|
name: "batch_explode",
|
|
3792
|
-
description: "\u6279\u91CF\u70B8\u5F00\u5B9E\u4F53",
|
|
3802
|
+
description: "\u6279\u91CF\u70B8\u5F00\u591A\u4E2A\u5B9E\u4F53\u4E3A\u57FA\u672C\u56FE\u5143\u3002\u4E0D\u53EF\u9006",
|
|
3793
3803
|
inputSchema: {
|
|
3794
3804
|
type: "object",
|
|
3795
3805
|
properties: {
|
|
@@ -3800,7 +3810,7 @@ var init_batch_tools = __esm({
|
|
|
3800
3810
|
},
|
|
3801
3811
|
{
|
|
3802
3812
|
name: "batch_mirror",
|
|
3803
|
-
description: "\u6279\u91CF\u955C\u50CF\u5B9E\u4F53",
|
|
3813
|
+
description: "\u6279\u91CF\u955C\u50CF\u591A\u4E2A\u5B9E\u4F53\u3002\u53EF\u4FDD\u7559\u6216\u5220\u9664\u539F\u5BF9\u8C61",
|
|
3804
3814
|
inputSchema: {
|
|
3805
3815
|
type: "object",
|
|
3806
3816
|
properties: {
|
|
@@ -3814,7 +3824,7 @@ var init_batch_tools = __esm({
|
|
|
3814
3824
|
},
|
|
3815
3825
|
{
|
|
3816
3826
|
name: "batch_offset",
|
|
3817
|
-
description: "\u6279\u91CF\u504F\u79FB\u5B9E\u4F53",
|
|
3827
|
+
description: "\u6279\u91CF\u504F\u79FB\u591A\u4E2A\u5B9E\u4F53\u3002side=both \u5411\u4E24\u4FA7\u5404\u504F\u79FB\u4E00\u6B21\uFF0Cside=single \u53EA\u504F\u4E00\u4FA7",
|
|
3818
3828
|
inputSchema: {
|
|
3819
3829
|
type: "object",
|
|
3820
3830
|
properties: {
|
|
@@ -3827,7 +3837,7 @@ var init_batch_tools = __esm({
|
|
|
3827
3837
|
},
|
|
3828
3838
|
{
|
|
3829
3839
|
name: "batch_rotate",
|
|
3830
|
-
description: "\u6279\u91CF\u65CB\u8F6C\u5B9E\u4F53",
|
|
3840
|
+
description: "\u6279\u91CF\u65CB\u8F6C\u591A\u4E2A\u5B9E\u4F53\u7ED5\u57FA\u70B9\u65CB\u8F6C\u6307\u5B9A\u89D2\u5EA6",
|
|
3831
3841
|
inputSchema: {
|
|
3832
3842
|
type: "object",
|
|
3833
3843
|
properties: {
|
|
@@ -3840,7 +3850,7 @@ var init_batch_tools = __esm({
|
|
|
3840
3850
|
},
|
|
3841
3851
|
{
|
|
3842
3852
|
name: "batch_scale",
|
|
3843
|
-
description: "\u6279\u91CF\u7F29\u653E\u5B9E\u4F53",
|
|
3853
|
+
description: "\u6279\u91CF\u7F29\u653E\u591A\u4E2A\u5B9E\u4F53\u3002scaleFactor>1\u653E\u5927\uFF0C<1\u7F29\u5C0F",
|
|
3844
3854
|
inputSchema: {
|
|
3845
3855
|
type: "object",
|
|
3846
3856
|
properties: {
|
|
@@ -3853,7 +3863,7 @@ var init_batch_tools = __esm({
|
|
|
3853
3863
|
},
|
|
3854
3864
|
{
|
|
3855
3865
|
name: "batch_set_linetype",
|
|
3856
|
-
description: "\u6279\u91CF\
|
|
3866
|
+
description: "\u6279\u91CF\u4FEE\u6539\u591A\u4E2A\u5B9E\u4F53\u7684\u7EBF\u578B\u3002\u5982 Continuous, DASHED, CENTER, DOT, HIDDEN \u7B49",
|
|
3857
3867
|
inputSchema: {
|
|
3858
3868
|
type: "object",
|
|
3859
3869
|
properties: {
|
|
@@ -3865,7 +3875,7 @@ var init_batch_tools = __esm({
|
|
|
3865
3875
|
},
|
|
3866
3876
|
{
|
|
3867
3877
|
name: "batch_match_properties",
|
|
3868
|
-
description: "\
|
|
3878
|
+
description: "\u683C\u5F0F\u5237\uFF1A\u5C06\u6E90\u5B9E\u4F53\u7684\u5C5E\u6027\uFF08\u56FE\u5C42/\u989C\u8272/\u7EBF\u578B\u7B49\uFF09\u590D\u5236\u5230\u591A\u4E2A\u76EE\u6807\u5B9E\u4F53",
|
|
3869
3879
|
inputSchema: {
|
|
3870
3880
|
type: "object",
|
|
3871
3881
|
properties: {
|
|
@@ -3877,7 +3887,7 @@ var init_batch_tools = __esm({
|
|
|
3877
3887
|
},
|
|
3878
3888
|
{
|
|
3879
3889
|
name: "batch_create_group",
|
|
3880
|
-
description: "\
|
|
3890
|
+
description: "\u5C06\u591A\u4E2A\u5B9E\u4F53\u4E00\u6B65\u521B\u5EFA\u4E3A\u547D\u540D\u7EC4",
|
|
3881
3891
|
inputSchema: {
|
|
3882
3892
|
type: "object",
|
|
3883
3893
|
properties: {
|
|
@@ -3889,7 +3899,7 @@ var init_batch_tools = __esm({
|
|
|
3889
3899
|
},
|
|
3890
3900
|
{
|
|
3891
3901
|
name: "batch_add_to_group",
|
|
3892
|
-
description: "\
|
|
3902
|
+
description: "\u5411\u5DF2\u6709\u7EC4\u4E2D\u6DFB\u52A0\u66F4\u591A\u5B9E\u4F53",
|
|
3893
3903
|
inputSchema: {
|
|
3894
3904
|
type: "object",
|
|
3895
3905
|
properties: {
|
|
@@ -3899,14 +3909,14 @@ var init_batch_tools = __esm({
|
|
|
3899
3909
|
required: ["groupName", "handles"]
|
|
3900
3910
|
}
|
|
3901
3911
|
},
|
|
3902
|
-
{ name: "move_entity", description: "\u79FB\u52A8\
|
|
3903
|
-
{ name: "copy_entity", description: "\u590D\u5236\
|
|
3904
|
-
{ name: "rotate_entity", description: "\u65CB\u8F6C\
|
|
3905
|
-
{ name: "scale_entity", description: "\u7F29\u653E\
|
|
3906
|
-
{ name: "mirror_entity", description: "\u955C\u50CF\
|
|
3907
|
-
{ name: "offset_entity", description: "\
|
|
3908
|
-
{ name: "array_rectangular", description:
|
|
3909
|
-
{ name: "array_polar", description:
|
|
3912
|
+
{ name: "move_entity", description: "\u5355\u4E2A\u5B9E\u4F53\u79FB\u52A8\uFF08\u51E0\u4F55\u4F4D\u79FB dx/dy\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, dx: { type: "number", description: "X \u504F\u79FB\u91CF" }, dy: { type: "number", description: "Y \u504F\u79FB\u91CF" }, dz: { type: "number", description: "Z \u504F\u79FB\u91CF(\u53EF\u9009,\u9ED8\u8BA40)" } }, required: ["handle", "dx", "dy"] } },
|
|
3913
|
+
{ name: "copy_entity", description: "\u5355\u4E2A\u5B9E\u4F53\u590D\u5236\uFF08\u504F\u79FB dx/dy \u521B\u5EFA\u526F\u672C\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, dx: { type: "number", description: "X \u504F\u79FB\u91CF" }, dy: { type: "number", description: "Y \u504F\u79FB\u91CF" }, dz: { type: "number", description: "Z \u504F\u79FB\u91CF(\u53EF\u9009,\u9ED8\u8BA40)" } }, required: ["handle", "dx", "dy"] } },
|
|
3914
|
+
{ name: "rotate_entity", description: "\u5355\u4E2A\u5B9E\u4F53\u7ED5\u57FA\u70B9\u65CB\u8F6C\u6307\u5B9A\u89D2\u5EA6\uFF08\u5EA6\uFF09", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, angle: { type: "number", description: "\u65CB\u8F6C\u89D2\u5EA6\uFF08\u5EA6\uFF0C\u6B63\u6570\u9006\u65F6\u9488\uFF09" }, basePoint: { type: "string", description: "\u57FA\u70B9\u5750\u6807 x,y" } }, required: ["handle", "angle"] } },
|
|
3915
|
+
{ name: "scale_entity", description: "\u5355\u4E2A\u5B9E\u4F53\u6309\u6BD4\u4F8B\u7F29\u653E\u3002scaleFactor>1\u653E\u5927\uFF0C<1\u7F29\u5C0F", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, scaleFactor: { type: "number", description: "\u7F29\u653E\u6BD4\u4F8B\uFF08>1\u653E\u5927\uFF0C<1\u7F29\u5C0F\uFF09" }, basePoint: { type: "string", description: "\u57FA\u70B9\u5750\u6807(\u53EF\u9009,\u9ED8\u8BA40,0)" } }, required: ["handle", "scaleFactor"] } },
|
|
3916
|
+
{ name: "mirror_entity", description: "\u5355\u4E2A\u5B9E\u4F53\u6CBF\u955C\u50CF\u7EBF\u7FFB\u8F6C\u3002\u53EF\u4FDD\u7559\u6216\u5220\u9664\u539F\u5BF9\u8C61", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, startPoint: { type: "string", description: "\u955C\u50CF\u7EBF\u8D77\u70B9 x,y" }, endPoint: { type: "string", description: "\u955C\u50CF\u7EBF\u7EC8\u70B9 x,y" }, deleteOriginal: { type: "boolean", description: "\u662F\u5426\u5220\u9664\u539F\u5BF9\u8C61\uFF08\u9ED8\u8BA4false\uFF09" } }, required: ["handle", "startPoint", "endPoint"] } },
|
|
3917
|
+
{ name: "offset_entity", description: "\u5355\u4E2A\u5B9E\u4F53\u6309\u8DDD\u79BB\u504F\u79FB\u590D\u5236", inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, distance: { type: "number", description: "\u504F\u79FB\u8DDD\u79BB" }, side: { type: "string", description: "\u504F\u79FB\u65B9\u5411\u4FA7\u70B9\u5750\u6807 x,y\uFF08\u786E\u5B9A\u504F\u79FB\u5230\u54EA\u4E00\u4FA7\uFF09" } }, required: ["handle", "distance", "side"] } },
|
|
3918
|
+
{ name: "array_rectangular", description: '\u77E9\u5F62\u9635\u5217\u5B9E\u4F53\uFF08\u884C\u5217\u590D\u5236\uFF09\u3002\u7528\u6237\u8BF4"\u9635\u5217/\u77E9\u9635\u590D\u5236"\u65F6\u8C03\u7528', inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, rows: { type: "integer", description: "\u884C\u6570" }, cols: { type: "integer", description: "\u5217\u6570" }, rowSpacing: { type: "number", description: "\u884C\u95F4\u8DDD" }, colSpacing: { type: "number", description: "\u5217\u95F4\u8DDD" } }, required: ["handle", "rows", "cols", "rowSpacing", "colSpacing"] } },
|
|
3919
|
+
{ name: "array_polar", description: '\u73AF\u5F62\u9635\u5217\u5B9E\u4F53\uFF08\u7ED5\u4E2D\u5FC3\u70B9\u65CB\u8F6C\u590D\u5236\uFF09\u3002\u7528\u6237\u8BF4"\u73AF\u5F62\u9635\u5217"\u65F6\u8C03\u7528', inputSchema: { type: "object", properties: { handle: { type: "string", description: "\u5B9E\u4F53\u53E5\u67C4" }, center: { type: "string", description: "\u9635\u5217\u4E2D\u5FC3\u70B9 x,y" }, count: { type: "integer", description: "\u9879\u76EE\u6570\uFF08\u542B\u539F\u5B9E\u4F53\uFF09" }, angle: { type: "number", description: "\u586B\u5145\u89D2\u5EA6(\u9ED8\u8BA4360\u5EA6)" } }, required: ["handle", "center", "count"] } }
|
|
3910
3920
|
];
|
|
3911
3921
|
}
|
|
3912
3922
|
});
|
|
@@ -3918,7 +3928,7 @@ var init_xdata_tools = __esm({
|
|
|
3918
3928
|
tools12 = [
|
|
3919
3929
|
{
|
|
3920
3930
|
name: "get_xdata",
|
|
3921
|
-
description: "\
|
|
3931
|
+
description: "\u8BFB\u53D6\u5B9E\u4F53\u7684\u6269\u5C55\u6570\u636E(Xdata)\u6307\u5B9A\u5E94\u7528\u7A0B\u5E8F\u4E0B\u7684\u6570\u636E\u3002\u7528\u6237\u67E5\u5B9E\u4F53\u9644\u52A0\u4FE1\u606F\u65F6\u8C03\u7528",
|
|
3922
3932
|
inputSchema: {
|
|
3923
3933
|
type: "object",
|
|
3924
3934
|
properties: {
|
|
@@ -3930,7 +3940,7 @@ var init_xdata_tools = __esm({
|
|
|
3930
3940
|
},
|
|
3931
3941
|
{
|
|
3932
3942
|
name: "set_xdata",
|
|
3933
|
-
description: "\
|
|
3943
|
+
description: "\u4E3A\u5B9E\u4F53\u5199\u5165\u6269\u5C55\u6570\u636E(Xdata)\u3002\u9700\u6307\u5B9AappName\u548CAutoLISP\u683C\u5F0F\u7684data\u5B57\u7B26\u4E32\u3002\u5E38\u7528\u4E8E\u9644\u52A0\u4E1A\u52A1\u6807\u8BC6",
|
|
3934
3944
|
inputSchema: {
|
|
3935
3945
|
type: "object",
|
|
3936
3946
|
properties: {
|
|
@@ -3943,7 +3953,7 @@ var init_xdata_tools = __esm({
|
|
|
3943
3953
|
},
|
|
3944
3954
|
{
|
|
3945
3955
|
name: "delete_xdata",
|
|
3946
|
-
description: "\u5220\u9664\u5B9E\u4F53\u6269\u5C55\u6570\u636E",
|
|
3956
|
+
description: "\u5220\u9664\u5B9E\u4F53\u4E0A\u6307\u5B9A\u5E94\u7528\u7A0B\u5E8F\u7684\u6269\u5C55\u6570\u636E",
|
|
3947
3957
|
inputSchema: {
|
|
3948
3958
|
type: "object",
|
|
3949
3959
|
properties: {
|
|
@@ -3955,7 +3965,7 @@ var init_xdata_tools = __esm({
|
|
|
3955
3965
|
},
|
|
3956
3966
|
{
|
|
3957
3967
|
name: "list_xdata_apps",
|
|
3958
|
-
description: "\u5217\u51FA\u5B9E\u4F53\u4E0A\
|
|
3968
|
+
description: "\u5217\u51FA\u67D0\u5B9E\u4F53\u4E0A\u6CE8\u518C\u4E86\u54EA\u4E9B\u6269\u5C55\u6570\u636E\u5E94\u7528\u7A0B\u5E8F\u540D",
|
|
3959
3969
|
inputSchema: {
|
|
3960
3970
|
type: "object",
|
|
3961
3971
|
properties: {
|
|
@@ -3966,7 +3976,7 @@ var init_xdata_tools = __esm({
|
|
|
3966
3976
|
},
|
|
3967
3977
|
{
|
|
3968
3978
|
name: "get_all_entity_xdata",
|
|
3969
|
-
description: "\u83B7\u53D6\u5B9E\u4F53\u6240\u6709\u6269\u5C55\u6570\u636E",
|
|
3979
|
+
description: "\u83B7\u53D6\u5B9E\u4F53\u4E0A\u6240\u6709\u5E94\u7528\u7A0B\u5E8F\u7684\u5B8C\u6574\u6269\u5C55\u6570\u636E",
|
|
3970
3980
|
inputSchema: {
|
|
3971
3981
|
type: "object",
|
|
3972
3982
|
properties: {
|
|
@@ -3977,7 +3987,7 @@ var init_xdata_tools = __esm({
|
|
|
3977
3987
|
},
|
|
3978
3988
|
{
|
|
3979
3989
|
name: "copy_xdata",
|
|
3980
|
-
description: "\
|
|
3990
|
+
description: "\u5C06\u6E90\u5B9E\u4F53\u4E0A\u7684\u6269\u5C55\u6570\u636E\u590D\u5236\u5230\u76EE\u6807\u5B9E\u4F53\u3002\u53EF\u9009\u53EA\u590D\u5236\u6307\u5B9AappName",
|
|
3981
3991
|
inputSchema: {
|
|
3982
3992
|
type: "object",
|
|
3983
3993
|
properties: {
|
|
@@ -3990,7 +4000,7 @@ var init_xdata_tools = __esm({
|
|
|
3990
4000
|
},
|
|
3991
4001
|
{
|
|
3992
4002
|
name: "search_by_xdata",
|
|
3993
|
-
description: "\
|
|
4003
|
+
description: "\u6309\u6269\u5C55\u6570\u636E\u4E2D\u7684\u952E\u503C\u5BF9\u641C\u7D22\u5339\u914D\u7684\u5B9E\u4F53\u3002\u9700\u77E5appName\u548Ckey/value",
|
|
3994
4004
|
inputSchema: {
|
|
3995
4005
|
type: "object",
|
|
3996
4006
|
properties: {
|
|
@@ -4003,7 +4013,7 @@ var init_xdata_tools = __esm({
|
|
|
4003
4013
|
},
|
|
4004
4014
|
{
|
|
4005
4015
|
name: "export_xdata_to_file",
|
|
4006
|
-
description: "\
|
|
4016
|
+
description: "\u5C06\u5B9E\u4F53\u7684\u6269\u5C55\u6570\u636E\u5BFC\u51FA\u5230JSON\u6587\u4EF6",
|
|
4007
4017
|
inputSchema: {
|
|
4008
4018
|
type: "object",
|
|
4009
4019
|
properties: {
|
|
@@ -4015,7 +4025,7 @@ var init_xdata_tools = __esm({
|
|
|
4015
4025
|
},
|
|
4016
4026
|
{
|
|
4017
4027
|
name: "import_xdata_from_file",
|
|
4018
|
-
description: "\
|
|
4028
|
+
description: "\u4ECEJSON\u6587\u4EF6\u5BFC\u5165\u6269\u5C55\u6570\u636E\u5230\u5B9E\u4F53",
|
|
4019
4029
|
inputSchema: {
|
|
4020
4030
|
type: "object",
|
|
4021
4031
|
properties: {
|
|
@@ -4037,7 +4047,7 @@ var init_sheetset_tools = __esm({
|
|
|
4037
4047
|
tools13 = [
|
|
4038
4048
|
{
|
|
4039
4049
|
name: "create_sheet_set",
|
|
4040
|
-
description:
|
|
4050
|
+
description: '\u521B\u5EFA\u56FE\u7EB8\u96C6\uFF08SheetSet\uFF09\u3002\u7528\u6237\u8BF4"\u5EFA\u56FE\u7EB8\u96C6"\u65F6\u8C03\u7528\u3002\u9700\u5148\u6709\u5E03\u5C40',
|
|
4041
4051
|
inputSchema: {
|
|
4042
4052
|
type: "object",
|
|
4043
4053
|
properties: {
|
|
@@ -4049,7 +4059,7 @@ var init_sheetset_tools = __esm({
|
|
|
4049
4059
|
},
|
|
4050
4060
|
{
|
|
4051
4061
|
name: "open_sheet_set",
|
|
4052
|
-
description: "\u6253\u5F00\u56FE\u7EB8\u96C6\u6587\u4EF6
|
|
4062
|
+
description: "\u6253\u5F00\u5DF2\u6709\u7684 .dst \u56FE\u7EB8\u96C6\u6587\u4EF6",
|
|
4053
4063
|
inputSchema: {
|
|
4054
4064
|
type: "object",
|
|
4055
4065
|
properties: {
|
|
@@ -4060,12 +4070,12 @@ var init_sheetset_tools = __esm({
|
|
|
4060
4070
|
},
|
|
4061
4071
|
{
|
|
4062
4072
|
name: "list_sheet_sets",
|
|
4063
|
-
description: "\u5217\u51FA\u6240\u6709\u56FE\u7EB8\u96C6",
|
|
4073
|
+
description: "\u5217\u51FA\u5F53\u524D\u53EF\u7528\u7684\u6240\u6709\u56FE\u7EB8\u96C6",
|
|
4064
4074
|
inputSchema: { type: "object", properties: {} }
|
|
4065
4075
|
},
|
|
4066
4076
|
{
|
|
4067
4077
|
name: "add_sheet",
|
|
4068
|
-
description: "\u6DFB\u52A0\u56FE\u7EB8\u5230\u56FE\u7EB8\u96C6",
|
|
4078
|
+
description: '\u5411\u56FE\u7EB8\u96C6\u4E2D\u6DFB\u52A0\u56FE\u7EB8\uFF08\u5173\u8054\u5E03\u5C40\uFF09\u3002\u7528\u6237\u8BF4"\u6DFB\u52A0\u56FE\u7EB8\u5230\u56FE\u7EB8\u96C6"\u65F6\u8C03\u7528',
|
|
4069
4079
|
inputSchema: {
|
|
4070
4080
|
type: "object",
|
|
4071
4081
|
properties: {
|
|
@@ -4078,7 +4088,7 @@ var init_sheetset_tools = __esm({
|
|
|
4078
4088
|
},
|
|
4079
4089
|
{
|
|
4080
4090
|
name: "list_sheets",
|
|
4081
|
-
description: "\u5217\u51FA\u56FE\u7EB8\u96C6\u4E2D\u7684\u6240\u6709\u56FE\u7EB8",
|
|
4091
|
+
description: "\u5217\u51FA\u56FE\u7EB8\u96C6\u4E2D\u7684\u6240\u6709\u56FE\u7EB8\u540D\u79F0",
|
|
4082
4092
|
inputSchema: {
|
|
4083
4093
|
type: "object",
|
|
4084
4094
|
properties: {
|
|
@@ -4089,7 +4099,7 @@ var init_sheetset_tools = __esm({
|
|
|
4089
4099
|
},
|
|
4090
4100
|
{
|
|
4091
4101
|
name: "delete_sheet",
|
|
4092
|
-
description: "\
|
|
4102
|
+
description: "\u4ECE\u56FE\u7EB8\u96C6\u4E2D\u79FB\u9664\u6307\u5B9A\u56FE\u7EB8",
|
|
4093
4103
|
inputSchema: {
|
|
4094
4104
|
type: "object",
|
|
4095
4105
|
properties: {
|
|
@@ -4101,7 +4111,7 @@ var init_sheetset_tools = __esm({
|
|
|
4101
4111
|
},
|
|
4102
4112
|
{
|
|
4103
4113
|
name: "publish_sheet_set",
|
|
4104
|
-
description: "\
|
|
4114
|
+
description: "\u5C06\u6574\u4E2A\u56FE\u7EB8\u96C6\u53D1\u5E03\u4E3APDF\u6216DWF",
|
|
4105
4115
|
inputSchema: {
|
|
4106
4116
|
type: "object",
|
|
4107
4117
|
properties: {
|
|
@@ -4114,7 +4124,7 @@ var init_sheetset_tools = __esm({
|
|
|
4114
4124
|
},
|
|
4115
4125
|
{
|
|
4116
4126
|
name: "get_sheet_set_property",
|
|
4117
|
-
description: "\
|
|
4127
|
+
description: "\u8BFB\u53D6\u56FE\u7EB8\u96C6\u7684\u81EA\u5B9A\u4E49\u5C5E\u6027\u503C",
|
|
4118
4128
|
inputSchema: {
|
|
4119
4129
|
type: "object",
|
|
4120
4130
|
properties: {
|
|
@@ -4126,7 +4136,7 @@ var init_sheetset_tools = __esm({
|
|
|
4126
4136
|
},
|
|
4127
4137
|
{
|
|
4128
4138
|
name: "create_sheet_set_archive",
|
|
4129
|
-
description: "\u5F52\u6863\u56FE\u7EB8\u96C6
|
|
4139
|
+
description: "\u5F52\u6863\u56FE\u7EB8\u96C6\uFF08eTransmit\u6253\u5305\u4E3Azip\uFF09",
|
|
4130
4140
|
inputSchema: {
|
|
4131
4141
|
type: "object",
|
|
4132
4142
|
properties: {
|
|
@@ -4138,7 +4148,7 @@ var init_sheetset_tools = __esm({
|
|
|
4138
4148
|
},
|
|
4139
4149
|
{
|
|
4140
4150
|
name: "reorder_sheet",
|
|
4141
|
-
description: "\
|
|
4151
|
+
description: "\u8C03\u6574\u56FE\u7EB8\u5728\u56FE\u7EB8\u96C6\u4E2D\u7684\u987A\u5E8F",
|
|
4142
4152
|
inputSchema: {
|
|
4143
4153
|
type: "object",
|
|
4144
4154
|
properties: {
|
|
@@ -4151,7 +4161,7 @@ var init_sheetset_tools = __esm({
|
|
|
4151
4161
|
},
|
|
4152
4162
|
{
|
|
4153
4163
|
name: "create_subset",
|
|
4154
|
-
description: "\
|
|
4164
|
+
description: "\u5728\u56FE\u7EB8\u96C6\u4E2D\u521B\u5EFA\u5B50\u96C6\uFF08\u6587\u4EF6\u5939\uFF09\u7528\u4E8E\u5206\u7C7B",
|
|
4155
4165
|
inputSchema: {
|
|
4156
4166
|
type: "object",
|
|
4157
4167
|
properties: {
|
|
@@ -4163,7 +4173,7 @@ var init_sheetset_tools = __esm({
|
|
|
4163
4173
|
},
|
|
4164
4174
|
{
|
|
4165
4175
|
name: "list_subsets",
|
|
4166
|
-
description: "\u5217\u51FA\u56FE\u7EB8\u96C6\u7684\u6240\u6709\u5B50\u96C6",
|
|
4176
|
+
description: "\u5217\u51FA\u56FE\u7EB8\u96C6\u4E2D\u7684\u6240\u6709\u5B50\u96C6",
|
|
4167
4177
|
inputSchema: {
|
|
4168
4178
|
type: "object",
|
|
4169
4179
|
properties: {
|
|
@@ -4174,7 +4184,7 @@ var init_sheetset_tools = __esm({
|
|
|
4174
4184
|
},
|
|
4175
4185
|
{
|
|
4176
4186
|
name: "set_sheet_property",
|
|
4177
|
-
description: "\u8BBE\u7F6E\u56FE\u7EB8\u81EA\u5B9A\u4E49\u5C5E\u6027",
|
|
4187
|
+
description: "\u8BBE\u7F6E\u56FE\u7EB8\u7684\u81EA\u5B9A\u4E49\u5C5E\u6027",
|
|
4178
4188
|
inputSchema: {
|
|
4179
4189
|
type: "object",
|
|
4180
4190
|
properties: {
|
|
@@ -4197,7 +4207,7 @@ var init_sheetset_adv_tools = __esm({
|
|
|
4197
4207
|
tools14 = [
|
|
4198
4208
|
{
|
|
4199
4209
|
name: "sheet_set_publish_options",
|
|
4200
|
-
description: "\u914D\u7F6E\
|
|
4210
|
+
description: "\u914D\u7F6E\u5355\u5F20\u56FE\u7EB8\u7684\u53D1\u5E03\u683C\u5F0F\u3001\u9875\u9762\u8BBE\u7F6E\u8986\u76D6\u548C\u6253\u5370\u6233\u8BB0",
|
|
4201
4211
|
inputSchema: {
|
|
4202
4212
|
type: "object",
|
|
4203
4213
|
properties: {
|
|
@@ -4212,7 +4222,7 @@ var init_sheetset_adv_tools = __esm({
|
|
|
4212
4222
|
},
|
|
4213
4223
|
{
|
|
4214
4224
|
name: "sheet_set_transmit",
|
|
4215
|
-
description: "eTransmit
|
|
4225
|
+
description: "eTransmit\u6253\u5305\uFF1A\u6536\u96C6\u56FE\u7EB8\u96C6\u6240\u6709\u4F9D\u8D56\u6587\u4EF6\uFF08\u542B\u5916\u90E8\u53C2\u7167\uFF09\u51C6\u5907\u4F20\u8F93",
|
|
4216
4226
|
inputSchema: {
|
|
4217
4227
|
type: "object",
|
|
4218
4228
|
properties: {
|
|
@@ -4224,7 +4234,7 @@ var init_sheetset_adv_tools = __esm({
|
|
|
4224
4234
|
},
|
|
4225
4235
|
{
|
|
4226
4236
|
name: "sheet_set_compare",
|
|
4227
|
-
description: "\u6BD4\u8F83\u4E24\u4E2A\u56FE\u7EB8\u96C6\uFF0C\
|
|
4237
|
+
description: "\u6BD4\u8F83\u4E24\u4E2A\u56FE\u7EB8\u96C6\uFF0C\u627E\u51FA\u5DEE\u5F02\u56FE\u7EB8",
|
|
4228
4238
|
inputSchema: {
|
|
4229
4239
|
type: "object",
|
|
4230
4240
|
properties: {
|
|
@@ -4236,7 +4246,7 @@ var init_sheetset_adv_tools = __esm({
|
|
|
4236
4246
|
},
|
|
4237
4247
|
{
|
|
4238
4248
|
name: "sheet_list_views",
|
|
4239
|
-
description: "\u5217\u51FA\u56FE\u7EB8\u4E2D\u5E03\u5C40\
|
|
4249
|
+
description: "\u5217\u51FA\u56FE\u7EB8\u4E2D\u5E03\u5C40\u5305\u542B\u7684\u547D\u540D\u89C6\u56FE",
|
|
4240
4250
|
inputSchema: {
|
|
4241
4251
|
type: "object",
|
|
4242
4252
|
properties: {
|
|
@@ -4248,7 +4258,7 @@ var init_sheetset_adv_tools = __esm({
|
|
|
4248
4258
|
},
|
|
4249
4259
|
{
|
|
4250
4260
|
name: "sheet_import_layouts",
|
|
4251
|
-
description: "\u4ECE\u5916\
|
|
4261
|
+
description: "\u4ECE\u5916\u90E8DWG\u5BFC\u5165\u5E03\u5C40\u5230\u56FE\u7EB8\u96C6\u4F5C\u4E3A\u65B0\u56FE\u7EB8",
|
|
4252
4262
|
inputSchema: {
|
|
4253
4263
|
type: "object",
|
|
4254
4264
|
properties: {
|
|
@@ -4270,7 +4280,7 @@ var init_d_tools = __esm({
|
|
|
4270
4280
|
tools15 = [
|
|
4271
4281
|
{
|
|
4272
4282
|
name: "create_box",
|
|
4273
|
-
description: "\u521B\u5EFA\
|
|
4283
|
+
description: "\u521B\u5EFA\u7ACB\u65B9\u4F53/\u957F\u65B9\u4F533D\u5B9E\u4F53\u3002\u6307\u5B9A\u4E2D\u5FC3\u70B9\u548C\u957F\u5BBD\u9AD8",
|
|
4274
4284
|
inputSchema: {
|
|
4275
4285
|
type: "object",
|
|
4276
4286
|
properties: {
|
|
@@ -4284,7 +4294,7 @@ var init_d_tools = __esm({
|
|
|
4284
4294
|
},
|
|
4285
4295
|
{
|
|
4286
4296
|
name: "create_sphere",
|
|
4287
|
-
description: "\u521B\u5EFA\u7403\
|
|
4297
|
+
description: "\u521B\u5EFA\u7403\u4F533D\u5B9E\u4F53\u3002\u6307\u5B9A\u4E2D\u5FC3\u70B9\u548C\u534A\u5F84",
|
|
4288
4298
|
inputSchema: {
|
|
4289
4299
|
type: "object",
|
|
4290
4300
|
properties: {
|
|
@@ -4296,7 +4306,7 @@ var init_d_tools = __esm({
|
|
|
4296
4306
|
},
|
|
4297
4307
|
{
|
|
4298
4308
|
name: "create_cylinder",
|
|
4299
|
-
description: "\u521B\u5EFA\u5706\u67F1\
|
|
4309
|
+
description: "\u521B\u5EFA\u5706\u67F1\u4F533D\u5B9E\u4F53\u3002\u6307\u5B9A\u4E2D\u5FC3\u70B9\u3001\u534A\u5F84\u548C\u9AD8\u5EA6",
|
|
4300
4310
|
inputSchema: {
|
|
4301
4311
|
type: "object",
|
|
4302
4312
|
properties: {
|
|
@@ -4309,7 +4319,7 @@ var init_d_tools = __esm({
|
|
|
4309
4319
|
},
|
|
4310
4320
|
{
|
|
4311
4321
|
name: "create_cone",
|
|
4312
|
-
description: "\u521B\u5EFA\u5706\u9525\
|
|
4322
|
+
description: "\u521B\u5EFA\u5706\u9525\u4F533D\u5B9E\u4F53\u3002\u6307\u5B9A\u4E2D\u5FC3\u70B9\u3001\u5E95\u9762\u534A\u5F84\u548C\u9AD8\u5EA6",
|
|
4313
4323
|
inputSchema: {
|
|
4314
4324
|
type: "object",
|
|
4315
4325
|
properties: {
|
|
@@ -4322,7 +4332,7 @@ var init_d_tools = __esm({
|
|
|
4322
4332
|
},
|
|
4323
4333
|
{
|
|
4324
4334
|
name: "create_torus",
|
|
4325
|
-
description: "\u521B\u5EFA\u5706\u73AF\
|
|
4335
|
+
description: "\u521B\u5EFA\u5706\u73AF\u4F533D\u5B9E\u4F53\u3002\u6307\u5B9A\u4E2D\u5FC3\u70B9\u3001\u4E3B\u534A\u5F84(\u73AF)\u548C\u6B21\u534A\u5F84(\u7BA1)",
|
|
4326
4336
|
inputSchema: {
|
|
4327
4337
|
type: "object",
|
|
4328
4338
|
properties: {
|
|
@@ -4335,7 +4345,7 @@ var init_d_tools = __esm({
|
|
|
4335
4345
|
},
|
|
4336
4346
|
{
|
|
4337
4347
|
name: "create_wedge",
|
|
4338
|
-
description: "\u521B\u5EFA\u6954\
|
|
4348
|
+
description: "\u521B\u5EFA\u6954\u5F62\u4F533D\u5B9E\u4F53\u3002\u6307\u5B9A\u4E2D\u5FC3\u70B9\u548C\u957F\u5BBD\u9AD8",
|
|
4339
4349
|
inputSchema: {
|
|
4340
4350
|
type: "object",
|
|
4341
4351
|
properties: {
|
|
@@ -4349,7 +4359,7 @@ var init_d_tools = __esm({
|
|
|
4349
4359
|
},
|
|
4350
4360
|
{
|
|
4351
4361
|
name: "create_3d_face",
|
|
4352
|
-
description:
|
|
4362
|
+
description: '\u521B\u5EFA3D\u9762(\u4E09\u4E2A\u6216\u56DB\u4E2A\u9876\u70B9)\u3002\u7528\u6237\u8BF4"\u5EFA3D\u9762"\u65F6\u8C03\u7528',
|
|
4353
4363
|
inputSchema: {
|
|
4354
4364
|
type: "object",
|
|
4355
4365
|
properties: {
|
|
@@ -4360,7 +4370,7 @@ var init_d_tools = __esm({
|
|
|
4360
4370
|
},
|
|
4361
4371
|
{
|
|
4362
4372
|
name: "create_mesh",
|
|
4363
|
-
description: "\u521B\u5EFA\u7F51\u683C",
|
|
4373
|
+
description: "\u521B\u5EFA\u7F51\u683C(Mesh)\u3002\u6307\u5B9A\u884C\u5217\u6570\u548C\u9876\u70B9\u5750\u6807",
|
|
4364
4374
|
inputSchema: {
|
|
4365
4375
|
type: "object",
|
|
4366
4376
|
properties: {
|
|
@@ -4373,7 +4383,7 @@ var init_d_tools = __esm({
|
|
|
4373
4383
|
},
|
|
4374
4384
|
{
|
|
4375
4385
|
name: "extrude_solid",
|
|
4376
|
-
description: "\u62C9\u4F38\
|
|
4386
|
+
description: "\u5C06\u95ED\u5408\u8F6E\u5ED3(\u9762\u57DF/\u591A\u6BB5\u7EBF)\u62C9\u4F38\u4E3A3D\u5B9E\u4F53\u3002\u53EF\u5E26\u9525\u5EA6\u89D2",
|
|
4377
4387
|
inputSchema: {
|
|
4378
4388
|
type: "object",
|
|
4379
4389
|
properties: {
|
|
@@ -4386,7 +4396,7 @@ var init_d_tools = __esm({
|
|
|
4386
4396
|
},
|
|
4387
4397
|
{
|
|
4388
4398
|
name: "revolve_solid",
|
|
4389
|
-
description: "\u65CB\u8F6C\
|
|
4399
|
+
description: "\u5C06\u8F6E\u5ED3\u7ED5\u8F74\u65CB\u8F6C\u751F\u62103D\u5B9E\u4F53\u3002\u9ED8\u8BA4360\u5EA6",
|
|
4390
4400
|
inputSchema: {
|
|
4391
4401
|
type: "object",
|
|
4392
4402
|
properties: {
|
|
@@ -4400,7 +4410,7 @@ var init_d_tools = __esm({
|
|
|
4400
4410
|
},
|
|
4401
4411
|
{
|
|
4402
4412
|
name: "create_3d_polyline",
|
|
4403
|
-
description: "\u521B\
|
|
4413
|
+
description: "\u521B\u5EFA3D\u591A\u6BB5\u7EBF(\u9876\u70B9\u53EF\u542BZ\u5750\u6807)",
|
|
4404
4414
|
inputSchema: {
|
|
4405
4415
|
type: "object",
|
|
4406
4416
|
properties: {
|
|
@@ -4411,7 +4421,7 @@ var init_d_tools = __esm({
|
|
|
4411
4421
|
},
|
|
4412
4422
|
{
|
|
4413
4423
|
name: "create_region",
|
|
4414
|
-
description: "\
|
|
4424
|
+
description: "\u5C06\u95ED\u5408\u66F2\u7EBF\u8F6C\u6362\u4E3A\u9762\u57DF(Region)\uFF0C\u7528\u4E8E\u5E03\u5C14\u8FD0\u7B97\u6216\u62C9\u4F38",
|
|
4415
4425
|
inputSchema: {
|
|
4416
4426
|
type: "object",
|
|
4417
4427
|
properties: {
|
|
@@ -4422,7 +4432,7 @@ var init_d_tools = __esm({
|
|
|
4422
4432
|
},
|
|
4423
4433
|
{
|
|
4424
4434
|
name: "boolean_union",
|
|
4425
|
-
description: "\
|
|
4435
|
+
description: "\u591A\u4E2A\u5B9E\u4F53\u5408\u5E76(\u5E76\u96C6)\uFF0C\u878D\u4E3A\u4E00\u4E2A\u6574\u4F53",
|
|
4426
4436
|
inputSchema: {
|
|
4427
4437
|
type: "object",
|
|
4428
4438
|
properties: {
|
|
@@ -4433,7 +4443,7 @@ var init_d_tools = __esm({
|
|
|
4433
4443
|
},
|
|
4434
4444
|
{
|
|
4435
4445
|
name: "boolean_subtract",
|
|
4436
|
-
description: "\
|
|
4446
|
+
description: "\u4ECE\u4E00\u7EC4\u5B9E\u4F53\u4E2D\u51CF\u53BB\u53E6\u4E00\u7EC4(\u5DEE\u96C6)",
|
|
4437
4447
|
inputSchema: {
|
|
4438
4448
|
type: "object",
|
|
4439
4449
|
properties: {
|
|
@@ -4445,7 +4455,7 @@ var init_d_tools = __esm({
|
|
|
4445
4455
|
},
|
|
4446
4456
|
{
|
|
4447
4457
|
name: "boolean_intersect",
|
|
4448
|
-
description: "\
|
|
4458
|
+
description: "\u53EA\u4FDD\u7559\u591A\u4E2A\u5B9E\u4F53\u7684\u91CD\u53E0\u90E8\u5206(\u4EA4\u96C6)",
|
|
4449
4459
|
inputSchema: {
|
|
4450
4460
|
type: "object",
|
|
4451
4461
|
properties: {
|
|
@@ -4456,7 +4466,7 @@ var init_d_tools = __esm({
|
|
|
4456
4466
|
},
|
|
4457
4467
|
{
|
|
4458
4468
|
name: "slice_solid",
|
|
4459
|
-
description: "\u5256\u5207\u5B9E\u4F53",
|
|
4469
|
+
description: "\u7528\u4E00\u4E2A\u5E73\u9762\u5256\u5207\u5B9E\u4F53\u3002\u53EF\u4FDD\u7559\u4E00\u4FA7\u6216\u4E24\u4FA7",
|
|
4460
4470
|
inputSchema: {
|
|
4461
4471
|
type: "object",
|
|
4462
4472
|
properties: {
|
|
@@ -4470,7 +4480,7 @@ var init_d_tools = __esm({
|
|
|
4470
4480
|
},
|
|
4471
4481
|
{
|
|
4472
4482
|
name: "create_loft_surface",
|
|
4473
|
-
description: "\u521B\u5EFA\u653E\u6837\u66F2\u9762",
|
|
4483
|
+
description: "\u5728\u591A\u4E2A\u8F6E\u5ED3\u4E4B\u95F4\u521B\u5EFA\u653E\u6837\u66F2\u9762\u3002\u53EF\u9009\u5F15\u5BFC\u7EBF",
|
|
4474
4484
|
inputSchema: {
|
|
4475
4485
|
type: "object",
|
|
4476
4486
|
properties: {
|
|
@@ -4482,7 +4492,7 @@ var init_d_tools = __esm({
|
|
|
4482
4492
|
},
|
|
4483
4493
|
{
|
|
4484
4494
|
name: "thicken_surface",
|
|
4485
|
-
description: "\u66F2\u9762\u52A0\u539A\
|
|
4495
|
+
description: "\u5C06\u66F2\u9762\u52A0\u539A\u4E3A3D\u5B9E\u4F53\u3002\u6307\u5B9A\u539A\u5EA6\u503C",
|
|
4486
4496
|
inputSchema: {
|
|
4487
4497
|
type: "object",
|
|
4488
4498
|
properties: {
|
|
@@ -4494,7 +4504,7 @@ var init_d_tools = __esm({
|
|
|
4494
4504
|
},
|
|
4495
4505
|
{
|
|
4496
4506
|
name: "offset_surface",
|
|
4497
|
-
description: "\u66F2\u9762\u504F\u79FB",
|
|
4507
|
+
description: "\u5C06\u66F2\u9762\u6CBF\u6CD5\u5411\u504F\u79FB\u6307\u5B9A\u8DDD\u79BB",
|
|
4498
4508
|
inputSchema: {
|
|
4499
4509
|
type: "object",
|
|
4500
4510
|
properties: {
|
|
@@ -4506,7 +4516,7 @@ var init_d_tools = __esm({
|
|
|
4506
4516
|
},
|
|
4507
4517
|
{
|
|
4508
4518
|
name: "get_3d_solid_info",
|
|
4509
|
-
description: "\
|
|
4519
|
+
description: "\u67E5\u8BE23D\u5B9E\u4F53\u7684\u4F53\u79EF\u3001\u8868\u9762\u79EF\u3001\u8D28\u5FC3\u7B49\u5C5E\u6027",
|
|
4510
4520
|
inputSchema: {
|
|
4511
4521
|
type: "object",
|
|
4512
4522
|
properties: {
|
|
@@ -4526,7 +4536,7 @@ var init_style_tools = __esm({
|
|
|
4526
4536
|
tools16 = [
|
|
4527
4537
|
{
|
|
4528
4538
|
name: "create_dimension_style",
|
|
4529
|
-
description: "\u521B\u5EFA\u6807\u6CE8\u6837\u5F0F",
|
|
4539
|
+
description: "\u521B\u5EFA\u6807\u6CE8\u6837\u5F0F(DimStyle)\uFF0C\u63A7\u5236\u7BAD\u5934\u3001\u989C\u8272\u3001\u6587\u5B57\u6837\u5F0F\u7B49",
|
|
4530
4540
|
inputSchema: {
|
|
4531
4541
|
type: "object",
|
|
4532
4542
|
properties: {
|
|
@@ -4540,7 +4550,7 @@ var init_style_tools = __esm({
|
|
|
4540
4550
|
},
|
|
4541
4551
|
{
|
|
4542
4552
|
name: "set_dimstyle_var",
|
|
4543
|
-
description: "\
|
|
4553
|
+
description: "\u4FEE\u6539\u6807\u6CE8\u6837\u5F0F\u7684\u7CFB\u7EDF\u53D8\u91CF(\u5982DIMTXT,DIMSCALE\u7B49)",
|
|
4544
4554
|
inputSchema: {
|
|
4545
4555
|
type: "object",
|
|
4546
4556
|
properties: {
|
|
@@ -4553,12 +4563,12 @@ var init_style_tools = __esm({
|
|
|
4553
4563
|
},
|
|
4554
4564
|
{
|
|
4555
4565
|
name: "list_dimension_styles",
|
|
4556
|
-
description: "\u5217\u51FA\u6240\u6709\u6807\u6CE8\u6837\u5F0F",
|
|
4566
|
+
description: "\u5217\u51FA\u6240\u6709\u5DF2\u5B9A\u4E49\u7684\u6807\u6CE8\u6837\u5F0F\u540D\u79F0",
|
|
4557
4567
|
inputSchema: { type: "object", properties: {} }
|
|
4558
4568
|
},
|
|
4559
4569
|
{
|
|
4560
4570
|
name: "create_text_style",
|
|
4561
|
-
description: "\u521B\u5EFA\u6587\u5B57\u6837\u5F0F",
|
|
4571
|
+
description: "\u521B\u5EFA\u6587\u5B57\u6837\u5F0F(TextStyle)\u3002\u6307\u5B9A\u5B57\u4F53\u6587\u4EF6\u3001\u5B57\u9AD8\u3001\u5BBD\u5EA6\u56E0\u5B50\u548C\u503E\u659C\u89D2",
|
|
4562
4572
|
inputSchema: {
|
|
4563
4573
|
type: "object",
|
|
4564
4574
|
properties: {
|
|
@@ -4573,12 +4583,12 @@ var init_style_tools = __esm({
|
|
|
4573
4583
|
},
|
|
4574
4584
|
{
|
|
4575
4585
|
name: "list_text_styles",
|
|
4576
|
-
description: "\u5217\u51FA\u6240\u6709\u6587\u5B57\u6837\u5F0F",
|
|
4586
|
+
description: "\u5217\u51FA\u6240\u6709\u5DF2\u5B9A\u4E49\u7684\u6587\u5B57\u6837\u5F0F\u540D\u79F0",
|
|
4577
4587
|
inputSchema: { type: "object", properties: {} }
|
|
4578
4588
|
},
|
|
4579
4589
|
{
|
|
4580
4590
|
name: "create_linetype",
|
|
4581
|
-
description: "\u521B\u5EFA\u7EBF\u578B",
|
|
4591
|
+
description: "\u521B\u5EFA\u81EA\u5B9A\u4E49\u7EBF\u578B\u3002\u9700\u63D0\u4F9B\u63CF\u8FF0\u548C\u56FE\u6848\u5B9A\u4E49",
|
|
4582
4592
|
inputSchema: {
|
|
4583
4593
|
type: "object",
|
|
4584
4594
|
properties: {
|
|
@@ -4591,7 +4601,7 @@ var init_style_tools = __esm({
|
|
|
4591
4601
|
},
|
|
4592
4602
|
{
|
|
4593
4603
|
name: "load_linetype",
|
|
4594
|
-
description: "\u52A0\u8F7D\u7EBF\u578B\
|
|
4604
|
+
description: "\u4ECE .lin \u7EBF\u578B\u5B9A\u4E49\u6587\u4EF6\u52A0\u8F7D\u7EBF\u578B\u5230\u56FE\u5F62",
|
|
4595
4605
|
inputSchema: {
|
|
4596
4606
|
type: "object",
|
|
4597
4607
|
properties: {
|
|
@@ -4603,12 +4613,12 @@ var init_style_tools = __esm({
|
|
|
4603
4613
|
},
|
|
4604
4614
|
{
|
|
4605
4615
|
name: "list_linetypes",
|
|
4606
|
-
description: "\u5217\u51FA\u6240\u6709\u7EBF\u578B",
|
|
4616
|
+
description: "\u5217\u51FA\u5F53\u524D\u56FE\u5F62\u4E2D\u6240\u6709\u5DF2\u52A0\u8F7D\u7684\u7EBF\u578B\u540D\u79F0",
|
|
4607
4617
|
inputSchema: { type: "object", properties: {} }
|
|
4608
4618
|
},
|
|
4609
4619
|
{
|
|
4610
4620
|
name: "create_mleader_style",
|
|
4611
|
-
description: "\u521B\u5EFA\u591A\u91CD\u5F15\u7EBF\u6837\u5F0F",
|
|
4621
|
+
description: "\u521B\u5EFA\u591A\u91CD\u5F15\u7EBF\u6837\u5F0F(MLeaderStyle)",
|
|
4612
4622
|
inputSchema: {
|
|
4613
4623
|
type: "object",
|
|
4614
4624
|
properties: {
|
|
@@ -4619,7 +4629,7 @@ var init_style_tools = __esm({
|
|
|
4619
4629
|
},
|
|
4620
4630
|
{
|
|
4621
4631
|
name: "set_mleader_style_prop",
|
|
4622
|
-
description: "\
|
|
4632
|
+
description: "\u4FEE\u6539\u591A\u91CD\u5F15\u7EBF\u6837\u5F0F\u7684\u5C5E\u6027",
|
|
4623
4633
|
inputSchema: {
|
|
4624
4634
|
type: "object",
|
|
4625
4635
|
properties: {
|
|
@@ -4632,12 +4642,12 @@ var init_style_tools = __esm({
|
|
|
4632
4642
|
},
|
|
4633
4643
|
{
|
|
4634
4644
|
name: "list_mleader_styles",
|
|
4635
|
-
description: "\u5217\u51FA\u6240\u6709\u591A\u91CD\u5F15\u7EBF\u6837\u5F0F",
|
|
4645
|
+
description: "\u5217\u51FA\u6240\u6709\u5DF2\u5B9A\u4E49\u7684\u591A\u91CD\u5F15\u7EBF\u6837\u5F0F\u540D\u79F0",
|
|
4636
4646
|
inputSchema: { type: "object", properties: {} }
|
|
4637
4647
|
},
|
|
4638
4648
|
{
|
|
4639
4649
|
name: "create_cloud_line",
|
|
4640
|
-
description: "\u521B\u5EFA\u4FEE\u8BA2\u4E91\u7EBF",
|
|
4650
|
+
description: "\u521B\u5EFA\u4FEE\u8BA2\u4E91\u7EBF(CloudLine)\u3002\u6307\u5B9A\u8D77\u70B9\u7EC8\u70B9\u548C\u51F8\u5EA6/\u5F27\u957F",
|
|
4641
4651
|
inputSchema: {
|
|
4642
4652
|
type: "object",
|
|
4643
4653
|
properties: {
|
|
@@ -4651,7 +4661,7 @@ var init_style_tools = __esm({
|
|
|
4651
4661
|
},
|
|
4652
4662
|
{
|
|
4653
4663
|
name: "convert_to_cloud_line",
|
|
4654
|
-
description: "\u5C06\u5B9E\u4F53\u8F6C\u6362\u4E3A\u4FEE\u8BA2\u4E91\u7EBF",
|
|
4664
|
+
description: "\u5C06\u5DF2\u6709\u5B9E\u4F53(\u5706/\u591A\u6BB5\u7EBF\u7B49)\u8F6C\u6362\u4E3A\u4FEE\u8BA2\u4E91\u7EBF",
|
|
4655
4665
|
inputSchema: {
|
|
4656
4666
|
type: "object",
|
|
4657
4667
|
properties: {
|
|
@@ -4671,7 +4681,7 @@ var init_pdf_tools = __esm({
|
|
|
4671
4681
|
tools17 = [
|
|
4672
4682
|
{
|
|
4673
4683
|
name: "attach_pdf",
|
|
4674
|
-
description: "\u9644\u7740
|
|
4684
|
+
description: "\u5C06PDF\u6587\u4EF6\u4F5C\u4E3A\u5E95\u56FE\u9644\u7740\u5230DWG\u4E2D\u3002\u6307\u5B9A\u63D2\u5165\u70B9\u3001\u7F29\u653E\u548C\u65CB\u8F6C",
|
|
4675
4685
|
inputSchema: {
|
|
4676
4686
|
type: "object",
|
|
4677
4687
|
properties: {
|
|
@@ -4685,12 +4695,12 @@ var init_pdf_tools = __esm({
|
|
|
4685
4695
|
},
|
|
4686
4696
|
{
|
|
4687
4697
|
name: "list_attached_pdfs",
|
|
4688
|
-
description: "\u5217\u51FA\u6240\u6709\u5DF2\u9644\u7740\
|
|
4698
|
+
description: "\u5217\u51FA\u5F53\u524DDWG\u4E2D\u6240\u6709\u5DF2\u9644\u7740\u7684PDF\u5E95\u56FE",
|
|
4689
4699
|
inputSchema: { type: "object", properties: {} }
|
|
4690
4700
|
},
|
|
4691
4701
|
{
|
|
4692
4702
|
name: "reload_pdf",
|
|
4693
|
-
description: "\u91CD\
|
|
4703
|
+
description: "\u91CD\u65B0\u52A0\u8F7DPDF\u5E95\u56FE\uFF08\u7528\u4E8E\u6587\u4EF6\u66F4\u65B0\u540E\u5237\u65B0\u663E\u793A\uFF09",
|
|
4694
4704
|
inputSchema: {
|
|
4695
4705
|
type: "object",
|
|
4696
4706
|
properties: {
|
|
@@ -4701,7 +4711,7 @@ var init_pdf_tools = __esm({
|
|
|
4701
4711
|
},
|
|
4702
4712
|
{
|
|
4703
4713
|
name: "detach_pdf",
|
|
4704
|
-
description: "\u62C6\u79BB
|
|
4714
|
+
description: "\u62C6\u79BB(\u5220\u9664)\u5DF2\u9644\u7740\u7684PDF\u5E95\u56FE",
|
|
4705
4715
|
inputSchema: {
|
|
4706
4716
|
type: "object",
|
|
4707
4717
|
properties: {
|
|
@@ -4712,7 +4722,7 @@ var init_pdf_tools = __esm({
|
|
|
4712
4722
|
},
|
|
4713
4723
|
{
|
|
4714
4724
|
name: "get_pdf_info",
|
|
4715
|
-
description: "\u83B7\
|
|
4725
|
+
description: "\u83B7\u53D6PDF\u5E95\u56FE\u7684\u4FE1\u606F\uFF08\u8DEF\u5F84\u3001\u9875\u6570\u3001\u5C3A\u5BF8\u7B49\uFF09",
|
|
4716
4726
|
inputSchema: {
|
|
4717
4727
|
type: "object",
|
|
4718
4728
|
properties: {
|
|
@@ -4723,7 +4733,7 @@ var init_pdf_tools = __esm({
|
|
|
4723
4733
|
},
|
|
4724
4734
|
{
|
|
4725
4735
|
name: "import_dxf",
|
|
4726
|
-
description: "\u5BFC\
|
|
4736
|
+
description: "\u5BFC\u5165DXF\u6587\u4EF6\u5230\u5F53\u524D\u56FE\u5F62\u3002explode=true\u5219\u70B8\u5F00\u63D2\u5165",
|
|
4727
4737
|
inputSchema: {
|
|
4728
4738
|
type: "object",
|
|
4729
4739
|
properties: {
|
|
@@ -4735,7 +4745,7 @@ var init_pdf_tools = __esm({
|
|
|
4735
4745
|
},
|
|
4736
4746
|
{
|
|
4737
4747
|
name: "import_dgn",
|
|
4738
|
-
description: "\u5BFC\
|
|
4748
|
+
description: "\u5BFC\u5165DGN(V8)\u6587\u4EF6\u4E3ADWG",
|
|
4739
4749
|
inputSchema: {
|
|
4740
4750
|
type: "object",
|
|
4741
4751
|
properties: {
|
|
@@ -4747,7 +4757,7 @@ var init_pdf_tools = __esm({
|
|
|
4747
4757
|
},
|
|
4748
4758
|
{
|
|
4749
4759
|
name: "export_dgn",
|
|
4750
|
-
description: "\u5BFC\u51FA\
|
|
4760
|
+
description: "\u5BFC\u51FA\u5F53\u524D\u56FE\u5F62\u4E3ADGN(V8)\u683C\u5F0F",
|
|
4751
4761
|
inputSchema: {
|
|
4752
4762
|
type: "object",
|
|
4753
4763
|
properties: {
|
|
@@ -4758,7 +4768,7 @@ var init_pdf_tools = __esm({
|
|
|
4758
4768
|
},
|
|
4759
4769
|
{
|
|
4760
4770
|
name: "create_dgn_underlay",
|
|
4761
|
-
description: "\u9644\
|
|
4771
|
+
description: "\u9644\u7740DGN\u6587\u4EF6\u4F5C\u4E3A\u5E95\u56FE\u5230DWG",
|
|
4762
4772
|
inputSchema: {
|
|
4763
4773
|
type: "object",
|
|
4764
4774
|
properties: {
|
|
@@ -4771,7 +4781,7 @@ var init_pdf_tools = __esm({
|
|
|
4771
4781
|
},
|
|
4772
4782
|
{
|
|
4773
4783
|
name: "create_dwf_underlay",
|
|
4774
|
-
description: "\u9644\
|
|
4784
|
+
description: "\u9644\u7740DWF\u6587\u4EF6\u4F5C\u4E3A\u5E95\u56FE\u5230DWG",
|
|
4775
4785
|
inputSchema: {
|
|
4776
4786
|
type: "object",
|
|
4777
4787
|
properties: {
|
|
@@ -4784,7 +4794,7 @@ var init_pdf_tools = __esm({
|
|
|
4784
4794
|
},
|
|
4785
4795
|
{
|
|
4786
4796
|
name: "create_hyperlink",
|
|
4787
|
-
description:
|
|
4797
|
+
description: '\u4E3A\u5B9E\u4F53\u6DFB\u52A0\u8D85\u94FE\u63A5(URL)\u3002\u7528\u6237\u8BF4"\u52A0\u94FE\u63A5"\u65F6\u8C03\u7528',
|
|
4788
4798
|
inputSchema: {
|
|
4789
4799
|
type: "object",
|
|
4790
4800
|
properties: {
|
|
@@ -4797,7 +4807,7 @@ var init_pdf_tools = __esm({
|
|
|
4797
4807
|
},
|
|
4798
4808
|
{
|
|
4799
4809
|
name: "remove_hyperlink",
|
|
4800
|
-
description: "\u5220\u9664\u8D85\u94FE\u63A5",
|
|
4810
|
+
description: "\u5220\u9664\u5B9E\u4F53\u4E0A\u7684\u8D85\u94FE\u63A5",
|
|
4801
4811
|
inputSchema: {
|
|
4802
4812
|
type: "object",
|
|
4803
4813
|
properties: {
|
|
@@ -4808,7 +4818,7 @@ var init_pdf_tools = __esm({
|
|
|
4808
4818
|
},
|
|
4809
4819
|
{
|
|
4810
4820
|
name: "batch_attach_pdfs",
|
|
4811
|
-
description: "\u6279\u91CF\u9644\u7740
|
|
4821
|
+
description: "\u6279\u91CF\u9644\u7740\u591A\u4E2APDF\u6587\u4EF6\u5230DWG\uFF08\u62FC\u56FE\u6392\u5217\uFF09\u3002\u6307\u5B9A\u95F4\u8DDD\u548C\u65B9\u5411",
|
|
4812
4822
|
inputSchema: {
|
|
4813
4823
|
type: "object",
|
|
4814
4824
|
properties: {
|
|
@@ -4822,7 +4832,7 @@ var init_pdf_tools = __esm({
|
|
|
4822
4832
|
},
|
|
4823
4833
|
{
|
|
4824
4834
|
name: "save_pdf_layout",
|
|
4825
|
-
description: "\
|
|
4835
|
+
description: "\u6309\u9875\u9762\u8BBE\u7F6E\u5C06\u5E03\u5C40\u6253\u5370\u4E3APDF\u6587\u4EF6",
|
|
4826
4836
|
inputSchema: {
|
|
4827
4837
|
type: "object",
|
|
4828
4838
|
properties: {
|
|
@@ -4845,7 +4855,7 @@ var init_xref_tools = __esm({
|
|
|
4845
4855
|
tools18 = [
|
|
4846
4856
|
{
|
|
4847
4857
|
name: "attach_xref",
|
|
4848
|
-
description: "\u9644\u7740\u5916\u90E8\u53C2\u7167",
|
|
4858
|
+
description: "\u9644\u7740\u5916\u90E8\u53C2\u7167(DWG\u5F15\u7528)\u3002\u7528\u6237\u53EF\u4EE5\u9009\u9644\u7740\u578B(attach)\u6216\u8986\u76D6\u578B(overlay)",
|
|
4849
4859
|
inputSchema: {
|
|
4850
4860
|
type: "object",
|
|
4851
4861
|
properties: {
|
|
@@ -4860,7 +4870,7 @@ var init_xref_tools = __esm({
|
|
|
4860
4870
|
},
|
|
4861
4871
|
{
|
|
4862
4872
|
name: "detach_xref",
|
|
4863
|
-
description: "\u62C6\u79BB\u5916\u90E8\u53C2\u7167",
|
|
4873
|
+
description: "\u62C6\u79BB\u6307\u5B9A\u5916\u90E8\u53C2\u7167",
|
|
4864
4874
|
inputSchema: {
|
|
4865
4875
|
type: "object",
|
|
4866
4876
|
properties: {
|
|
@@ -4871,7 +4881,7 @@ var init_xref_tools = __esm({
|
|
|
4871
4881
|
},
|
|
4872
4882
|
{
|
|
4873
4883
|
name: "reload_xref",
|
|
4874
|
-
description: "\u91CD\u8F7D\u5916\u90E8\u53C2\u7167",
|
|
4884
|
+
description: "\u91CD\u65B0\u52A0\u8F7D\u5916\u90E8\u53C2\u7167\uFF08\u6E90\u6587\u4EF6\u53D8\u66F4\u540E\u5237\u65B0\u663E\u793A\uFF09",
|
|
4875
4885
|
inputSchema: {
|
|
4876
4886
|
type: "object",
|
|
4877
4887
|
properties: {
|
|
@@ -4882,7 +4892,7 @@ var init_xref_tools = __esm({
|
|
|
4882
4892
|
},
|
|
4883
4893
|
{
|
|
4884
4894
|
name: "unload_xref",
|
|
4885
|
-
description: "\u5378\u8F7D\u5916\u90E8\u53C2\u7167",
|
|
4895
|
+
description: "\u4E34\u65F6\u5378\u8F7D\u5916\u90E8\u53C2\u7167\uFF08\u4E0D\u5220\u9664\uFF0C\u53EF\u91CD\u65B0\u52A0\u8F7D\uFF09",
|
|
4886
4896
|
inputSchema: {
|
|
4887
4897
|
type: "object",
|
|
4888
4898
|
properties: {
|
|
@@ -4893,12 +4903,12 @@ var init_xref_tools = __esm({
|
|
|
4893
4903
|
},
|
|
4894
4904
|
{
|
|
4895
4905
|
name: "list_xrefs",
|
|
4896
|
-
description: "\u5217\u51FA\u6240\u6709\u5916\u90E8\u53C2\u7167",
|
|
4906
|
+
description: "\u5217\u51FA\u5F53\u524DDWG\u4E2D\u6240\u6709\u5916\u90E8\u53C2\u7167\u53CA\u5176\u72B6\u6001",
|
|
4897
4907
|
inputSchema: { type: "object", properties: {} }
|
|
4898
4908
|
},
|
|
4899
4909
|
{
|
|
4900
4910
|
name: "bind_xref",
|
|
4901
|
-
description: "\
|
|
4911
|
+
description: "\u5C06\u5916\u90E8\u53C2\u7167\u7ED1\u5B9A\u5230\u5F53\u524D\u56FE\u5F62\u6210\u4E3A\u5757\u5B9A\u4E49\u3002bind=\u7ED1\u5B9A\u7B26\u53F7\u8868, insert=\u63D2\u5165\u65B9\u5F0F",
|
|
4902
4912
|
inputSchema: {
|
|
4903
4913
|
type: "object",
|
|
4904
4914
|
properties: {
|
|
@@ -4910,7 +4920,7 @@ var init_xref_tools = __esm({
|
|
|
4910
4920
|
},
|
|
4911
4921
|
{
|
|
4912
4922
|
name: "clip_xref",
|
|
4913
|
-
description: "\u88C1\u526A\u5916\u90E8\u53C2\u7167",
|
|
4923
|
+
description: "\u7528\u591A\u8FB9\u5F62\u88C1\u526A\u8FB9\u754C\u88C1\u526A\u5916\u90E8\u53C2\u7167\u7684\u663E\u793A\u8303\u56F4",
|
|
4914
4924
|
inputSchema: {
|
|
4915
4925
|
type: "object",
|
|
4916
4926
|
properties: {
|
|
@@ -4922,7 +4932,7 @@ var init_xref_tools = __esm({
|
|
|
4922
4932
|
},
|
|
4923
4933
|
{
|
|
4924
4934
|
name: "path_xref",
|
|
4925
|
-
description: "\u4FEE\u6539\u5916\u90E8\u53C2\u7167\u8DEF\u5F84",
|
|
4935
|
+
description: "\u4FEE\u6539\u5916\u90E8\u53C2\u7167\u7684\u8DEF\u5F84\uFF08\u6587\u4EF6\u4F4D\u7F6E\u53D8\u66F4\u65F6\u4F7F\u7528\uFF09",
|
|
4926
4936
|
inputSchema: {
|
|
4927
4937
|
type: "object",
|
|
4928
4938
|
properties: {
|
|
@@ -4943,7 +4953,7 @@ var init_xref_adv_tools = __esm({
|
|
|
4943
4953
|
tools19 = [
|
|
4944
4954
|
{
|
|
4945
4955
|
name: "xref_notifications",
|
|
4946
|
-
description: "\
|
|
4956
|
+
description: "\u542F\u7528/\u7981\u7528\u6216\u67E5\u8BE2\u5916\u90E8\u53C2\u7167\u53D8\u66F4\u901A\u77E5\u3002\u65E0\u53C2\u6570\u65F6\u8FD4\u56DE\u5F53\u524D\u72B6\u6001",
|
|
4947
4957
|
inputSchema: {
|
|
4948
4958
|
type: "object",
|
|
4949
4959
|
properties: {
|
|
@@ -4956,7 +4966,7 @@ var init_xref_adv_tools = __esm({
|
|
|
4956
4966
|
},
|
|
4957
4967
|
{
|
|
4958
4968
|
name: "xref_compare",
|
|
4959
|
-
description: "\
|
|
4969
|
+
description: "\u67E5\u770B\u5916\u90E8\u53C2\u7167\u5185\u7684\u5B9E\u4F53\u5217\u8868\uFF0C\u4E0E\u5F53\u524D\u56FE\u5F62\u6BD4\u8F83",
|
|
4960
4970
|
inputSchema: {
|
|
4961
4971
|
type: "object",
|
|
4962
4972
|
properties: {
|
|
@@ -4967,7 +4977,7 @@ var init_xref_adv_tools = __esm({
|
|
|
4967
4977
|
},
|
|
4968
4978
|
{
|
|
4969
4979
|
name: "xref_convert_to_block",
|
|
4970
|
-
description: "\u5C06\u5DF2\u9644\u7740\u7684\u5916\u90E8\u53C2\u7167\u539F\u5730\u8F6C\
|
|
4980
|
+
description: "\u5C06\u5DF2\u9644\u7740\u7684\u5916\u90E8\u53C2\u7167\u539F\u5730\u8F6C\u4E3A\u5757\u5B9A\u4E49\uFF08\u4E0D\u518D\u53C2\u7167\u5916\u90E8\u6587\u4EF6\uFF09",
|
|
4971
4981
|
inputSchema: {
|
|
4972
4982
|
type: "object",
|
|
4973
4983
|
properties: {
|
|
@@ -4979,7 +4989,7 @@ var init_xref_adv_tools = __esm({
|
|
|
4979
4989
|
},
|
|
4980
4990
|
{
|
|
4981
4991
|
name: "xref_demote",
|
|
4982
|
-
description: "\u5C06\u5D4C\u5957\u5916\u90E8\u53C2\u7167\u964D\u7EA7\u5230\u9876\u7EA7",
|
|
4992
|
+
description: "\u5C06\u5D4C\u5957\u7684\u5916\u90E8\u53C2\u7167\u964D\u7EA7\u5230\u9876\u7EA7\uFF08\u89E3\u9664\u5D4C\u5957\u5C42\u6B21\uFF09",
|
|
4983
4993
|
inputSchema: {
|
|
4984
4994
|
type: "object",
|
|
4985
4995
|
properties: {
|
|
@@ -4990,7 +5000,7 @@ var init_xref_adv_tools = __esm({
|
|
|
4990
5000
|
},
|
|
4991
5001
|
{
|
|
4992
5002
|
name: "xref_path_relative",
|
|
4993
|
-
description:
|
|
5003
|
+
description: '\u6279\u91CF\u5C06\u5916\u90E8\u53C2\u7167\u8DEF\u5F84\u8F6C\u4E3A\u76F8\u5BF9\u8DEF\u5F84\u3002\u4F20"all"\u8F6C\u6362\u6240\u6709',
|
|
4994
5004
|
inputSchema: {
|
|
4995
5005
|
type: "object",
|
|
4996
5006
|
properties: {
|
|
@@ -5016,7 +5026,7 @@ var init_constraint_tools = __esm({
|
|
|
5016
5026
|
tools20 = [
|
|
5017
5027
|
{
|
|
5018
5028
|
name: "add_geom_constraint",
|
|
5019
|
-
description: "\u6DFB\u52A0\u51E0\u4F55\u7EA6\u675F\
|
|
5029
|
+
description: "\u5728\u4E24\u4E2A\u5B9E\u4F53\u95F4\u6DFB\u52A0\u51E0\u4F55\u7EA6\u675F(\u5E73\u884C/\u5782\u76F4/\u76F8\u5207/\u5171\u7EBF/\u540C\u5FC3/\u6C34\u5E73/\u7AD6\u76F4/\u56FA\u5B9A/\u5BF9\u79F0/\u76F8\u7B49)",
|
|
5020
5030
|
inputSchema: {
|
|
5021
5031
|
type: "object",
|
|
5022
5032
|
properties: {
|
|
@@ -5031,7 +5041,7 @@ var init_constraint_tools = __esm({
|
|
|
5031
5041
|
},
|
|
5032
5042
|
{
|
|
5033
5043
|
name: "add_dim_constraint",
|
|
5034
|
-
description: "\u6DFB\u52A0\u6807\u6CE8\u7EA6\u675F\
|
|
5044
|
+
description: "\u6DFB\u52A0\u6807\u6CE8\u7EA6\u675F(\u5C3A\u5BF8\u9A71\u52A8)\uFF0C\u6307\u5B9A\u7C7B\u578B\u3001\u503C\u548C\u7EA6\u675F\u70B9",
|
|
5035
5045
|
inputSchema: {
|
|
5036
5046
|
type: "object",
|
|
5037
5047
|
properties: {
|
|
@@ -5046,7 +5056,7 @@ var init_constraint_tools = __esm({
|
|
|
5046
5056
|
},
|
|
5047
5057
|
{
|
|
5048
5058
|
name: "del_constraint",
|
|
5049
|
-
description: "\u5220\u9664\u5B9E\u4F53\u4E0A\u7684\u6240\u6709\u7EA6\u675F",
|
|
5059
|
+
description: "\u5220\u9664\u5B9E\u4F53\u4E0A\u7684\u6240\u6709\u51E0\u4F55\u548C\u6807\u6CE8\u7EA6\u675F",
|
|
5050
5060
|
inputSchema: {
|
|
5051
5061
|
type: "object",
|
|
5052
5062
|
properties: {
|
|
@@ -5057,7 +5067,7 @@ var init_constraint_tools = __esm({
|
|
|
5057
5067
|
},
|
|
5058
5068
|
{
|
|
5059
5069
|
name: "list_constraints",
|
|
5060
|
-
description: "\u5217\u51FA\u5F53\
|
|
5070
|
+
description: "\u5217\u51FA\u5F53\u524DDWG\u4E2D\u6240\u6709\u5DF2\u5B9A\u4E49\u7684\u7EA6\u675F",
|
|
5061
5071
|
inputSchema: { type: "object", properties: {} }
|
|
5062
5072
|
}
|
|
5063
5073
|
];
|
|
@@ -5071,7 +5081,7 @@ var init_parametric_tools = __esm({
|
|
|
5071
5081
|
tools21 = [
|
|
5072
5082
|
{
|
|
5073
5083
|
name: "get_dynamic_block_properties",
|
|
5074
|
-
description: "\u83B7\u53D6\u52A8\u6001\u5757\u6240\u6709\u5C5E\u6027\
|
|
5084
|
+
description: "\u83B7\u53D6\u52A8\u6001\u5757\u7684\u6240\u6709\u53EF\u8C03\u5C5E\u6027(\u53EF\u89C1\u6027/\u62C9\u4F38/\u7FFB\u8F6C\u7B49)",
|
|
5075
5085
|
inputSchema: {
|
|
5076
5086
|
type: "object",
|
|
5077
5087
|
properties: {
|
|
@@ -5082,7 +5092,7 @@ var init_parametric_tools = __esm({
|
|
|
5082
5092
|
},
|
|
5083
5093
|
{
|
|
5084
5094
|
name: "set_dynamic_block_property",
|
|
5085
|
-
description: "\u8BBE\u7F6E\u52A8\u6001\u5757\u5C5E\u6027\u503C",
|
|
5095
|
+
description: "\u8BBE\u7F6E\u52A8\u6001\u5757\u7684\u5C5E\u6027\u503C\uFF08\u4FEE\u6539\u5C3A\u5BF8/\u5207\u6362\u53EF\u89C1\u6027\u7B49\uFF09",
|
|
5086
5096
|
inputSchema: {
|
|
5087
5097
|
type: "object",
|
|
5088
5098
|
properties: {
|
|
@@ -5095,7 +5105,7 @@ var init_parametric_tools = __esm({
|
|
|
5095
5105
|
},
|
|
5096
5106
|
{
|
|
5097
5107
|
name: "get_block_parameters",
|
|
5098
|
-
description: "\u83B7\u53D6\u5757\u53C2\u6570\u53CA\u5176\u5F53\u524D\u503C",
|
|
5108
|
+
description: "\u83B7\u53D6\u5757\u7684\u6240\u6709\u53C2\u6570\u5316\u53C2\u6570\u53CA\u5176\u5F53\u524D\u503C",
|
|
5099
5109
|
inputSchema: {
|
|
5100
5110
|
type: "object",
|
|
5101
5111
|
properties: {
|
|
@@ -5106,7 +5116,7 @@ var init_parametric_tools = __esm({
|
|
|
5106
5116
|
},
|
|
5107
5117
|
{
|
|
5108
5118
|
name: "set_block_parameter",
|
|
5109
|
-
description: "\u8BBE\u7F6E\u5757\u53C2\u6570\u503C",
|
|
5119
|
+
description: "\u8BBE\u7F6E\u5757\u53C2\u6570\u5316\u53C2\u6570\u7684\u503C",
|
|
5110
5120
|
inputSchema: {
|
|
5111
5121
|
type: "object",
|
|
5112
5122
|
properties: {
|
|
@@ -5119,7 +5129,7 @@ var init_parametric_tools = __esm({
|
|
|
5119
5129
|
},
|
|
5120
5130
|
{
|
|
5121
5131
|
name: "list_visibility_states",
|
|
5122
|
-
description: "\u5217\u51FA\u52A8\u6001\u5757\u7684\u53EF\u89C1\u6027\u72B6\u6001",
|
|
5132
|
+
description: "\u5217\u51FA\u52A8\u6001\u5757\u7684\u6240\u6709\u53EF\u89C1\u6027\u72B6\u6001\u540D\u79F0",
|
|
5123
5133
|
inputSchema: {
|
|
5124
5134
|
type: "object",
|
|
5125
5135
|
properties: {
|
|
@@ -5130,7 +5140,7 @@ var init_parametric_tools = __esm({
|
|
|
5130
5140
|
},
|
|
5131
5141
|
{
|
|
5132
5142
|
name: "set_visibility_state",
|
|
5133
|
-
description: "\
|
|
5143
|
+
description: "\u5207\u6362\u52A8\u6001\u5757\u7684\u53EF\u89C1\u6027\u72B6\u6001\uFF08\u663E\u793A/\u9690\u85CF\u4E0D\u540C\u90E8\u5206\uFF09",
|
|
5134
5144
|
inputSchema: {
|
|
5135
5145
|
type: "object",
|
|
5136
5146
|
properties: {
|
|
@@ -5151,7 +5161,7 @@ var init_plot_adv_tools = __esm({
|
|
|
5151
5161
|
tools22 = [
|
|
5152
5162
|
{
|
|
5153
5163
|
name: "batch_plot_wizard",
|
|
5154
|
-
description: "\u6279\u91CF\u6253\u5370\u5411\u5BFC
|
|
5164
|
+
description: "\u6279\u91CF\u6253\u5370\u5411\u5BFC\u3002\u9009\u62E9\u591A\u4E2A\u5E03\u5C40\u8F93\u51FA\u4E3APDF/DWF\u3002\u652F\u6301\u9884\u89C8\u6A21\u5F0Fpreview=true\u53EA\u67E5\u770B\u4E0D\u6253\u5370",
|
|
5155
5165
|
inputSchema: {
|
|
5156
5166
|
type: "object",
|
|
5157
5167
|
properties: {
|
|
@@ -5167,7 +5177,7 @@ var init_plot_adv_tools = __esm({
|
|
|
5167
5177
|
},
|
|
5168
5178
|
{
|
|
5169
5179
|
name: "plot_device_management",
|
|
5170
|
-
description: "\u6253\u5370\u8BBE\u5907\u7BA1\u7406
|
|
5180
|
+
description: "\u6253\u5370\u8BBE\u5907\u7BA1\u7406\u3002action=list\u5217\u51FA\u6240\u6709\u6253\u5370\u673A,get\u67E5\u770B\u8BE6\u60C5,set\u8BBE\u4E3A\u5F53\u524D,test\u6D4B\u8BD5\u6253\u5370",
|
|
5171
5181
|
inputSchema: {
|
|
5172
5182
|
type: "object",
|
|
5173
5183
|
properties: {
|
|
@@ -5179,7 +5189,7 @@ var init_plot_adv_tools = __esm({
|
|
|
5179
5189
|
},
|
|
5180
5190
|
{
|
|
5181
5191
|
name: "plot_log",
|
|
5182
|
-
description: "\u67E5\u8BE2\u6253\u5370\
|
|
5192
|
+
description: "\u67E5\u8BE2\u6253\u5370\u5386\u53F2\u8BB0\u5F55\u3002\u53EF\u6309\u65E5\u671F\u548C\u72B6\u6001(success/error)\u8FC7\u6EE4",
|
|
5183
5193
|
inputSchema: {
|
|
5184
5194
|
type: "object",
|
|
5185
5195
|
properties: {
|
|
@@ -5191,7 +5201,7 @@ var init_plot_adv_tools = __esm({
|
|
|
5191
5201
|
},
|
|
5192
5202
|
{
|
|
5193
5203
|
name: "plot_from_file_list",
|
|
5194
|
-
description: "\
|
|
5204
|
+
description: "\u76F4\u63A5\u4ECEDWG\u6587\u4EF6\u5217\u8868\u6279\u91CF\u6253\u5370\u3002\u652F\u6301\u4F20\u5165\u6570\u7EC4\u6216\u4ECE\u6587\u672C\u6587\u4EF6\u8BFB\u53D6",
|
|
5195
5205
|
inputSchema: {
|
|
5196
5206
|
type: "object",
|
|
5197
5207
|
properties: {
|
|
@@ -5211,7 +5221,7 @@ var init_trigger_tools = __esm({
|
|
|
5211
5221
|
tools23 = [
|
|
5212
5222
|
{
|
|
5213
5223
|
name: "watch_register",
|
|
5214
|
-
description: "\u6CE8\
|
|
5224
|
+
description: "\u6CE8\u518CCAD\u53D8\u66F4\u4E8B\u4EF6\u89E6\u53D1\u5668\u3002\u7C7B\u578B: entity_count(\u5B9E\u4F53\u6570\u53D8\u5316), layer_exists(\u56FE\u5C42\u521B\u5EFA), layer_count(\u56FE\u5C42\u6570), doc_name(\u6587\u6863\u540D\u5339\u914D), custom_lisp(\u81EA\u5B9A\u4E49Lisp\u6761\u4EF6)",
|
|
5215
5225
|
inputSchema: {
|
|
5216
5226
|
type: "object",
|
|
5217
5227
|
properties: {
|
|
@@ -5250,7 +5260,7 @@ var init_trigger_tools = __esm({
|
|
|
5250
5260
|
},
|
|
5251
5261
|
{
|
|
5252
5262
|
name: "watch_wait",
|
|
5253
|
-
description: "\u7B49\u5F85\u6307\u5B9A\u89E6\u53D1\u5668\u89E6\u53D1\
|
|
5263
|
+
description: "\u7B49\u5F85\u6307\u5B9A\u89E6\u53D1\u5668\u89E6\u53D1\uFF0C\u8D85\u65F6\u8FD4\u56DE\u3002timeout\u9ED8\u8BA430\u79D2",
|
|
5254
5264
|
inputSchema: {
|
|
5255
5265
|
type: "object",
|
|
5256
5266
|
properties: {
|
|
@@ -5262,7 +5272,7 @@ var init_trigger_tools = __esm({
|
|
|
5262
5272
|
},
|
|
5263
5273
|
{
|
|
5264
5274
|
name: "watch_create_and_wait",
|
|
5265
|
-
description: "\u6CE8\u518C\u89E6\u53D1\u5668\u5E76\u7B49\u5F85\u89E6\u53D1
|
|
5275
|
+
description: "\u4E00\u6B65\u5B8C\u6210\u6CE8\u518C\u89E6\u53D1\u5668\u5E76\u7B49\u5F85\u89E6\u53D1",
|
|
5266
5276
|
inputSchema: {
|
|
5267
5277
|
type: "object",
|
|
5268
5278
|
properties: {
|
|
@@ -5290,7 +5300,7 @@ var init_repl_tools = __esm({
|
|
|
5290
5300
|
tools24 = [
|
|
5291
5301
|
{
|
|
5292
5302
|
name: "lisp_repl",
|
|
5293
|
-
description: "\
|
|
5303
|
+
description: "\u4EA4\u4E92\u5F0FLisp\u6267\u884C\u4F1A\u8BDD\u3002\u81EA\u52A8\u8FFD\u8E2Asetq\u53D8\u91CF\u3002\u4E0D\u4F20sessionId\u5219\u81EA\u52A8\u521B\u5EFA\u65B0\u4F1A\u8BDD\u3002\u9002\u5408\u9010\u6B65\u8C03\u8BD5Lisp\u4EE3\u7801",
|
|
5294
5304
|
inputSchema: {
|
|
5295
5305
|
type: "object",
|
|
5296
5306
|
properties: {
|
|
@@ -5302,7 +5312,7 @@ var init_repl_tools = __esm({
|
|
|
5302
5312
|
},
|
|
5303
5313
|
{
|
|
5304
5314
|
name: "lisp_repl_history",
|
|
5305
|
-
description: "\
|
|
5315
|
+
description: "\u67E5\u770BREPL\u4F1A\u8BDD\u7684\u5386\u53F2\u6267\u884C\u8BB0\u5F55",
|
|
5306
5316
|
inputSchema: {
|
|
5307
5317
|
type: "object",
|
|
5308
5318
|
properties: {
|
|
@@ -5313,12 +5323,12 @@ var init_repl_tools = __esm({
|
|
|
5313
5323
|
},
|
|
5314
5324
|
{
|
|
5315
5325
|
name: "lisp_repl_list",
|
|
5316
|
-
description: "\u5217\u51FA\u6240\u6709\u6D3B\u8DC3\
|
|
5326
|
+
description: "\u5217\u51FA\u6240\u6709\u6D3B\u8DC3\u7684REPL\u4F1A\u8BDD",
|
|
5317
5327
|
inputSchema: { type: "object", properties: {} }
|
|
5318
5328
|
},
|
|
5319
5329
|
{
|
|
5320
5330
|
name: "lisp_repl_close",
|
|
5321
|
-
description: "\u5173\u95ED
|
|
5331
|
+
description: "\u5173\u95ED\u6307\u5B9AREPL\u4F1A\u8BDD\u5E76\u6E05\u7406CAD\u4E2D\u7684\u8F85\u52A9\u53D8\u91CF",
|
|
5322
5332
|
inputSchema: {
|
|
5323
5333
|
type: "object",
|
|
5324
5334
|
properties: {
|
|
@@ -5338,7 +5348,7 @@ var init_stream_tools = __esm({
|
|
|
5338
5348
|
tools25 = [
|
|
5339
5349
|
{
|
|
5340
5350
|
name: "stream_entities",
|
|
5341
|
-
description: "
|
|
5351
|
+
description: "\u5206\u9875\u8BFB\u53D6\u5B9E\u4F53\u6570\u636E\u3002\u6309type(\u5B9E\u4F53\u7C7B\u578B)\u548C/\u6216layer(\u56FE\u5C42)\u8FC7\u6EE4\u3002offset/limit\u63A7\u5236\u5206\u9875\u3002\u9002\u5408\u5927\u6279\u91CF\u83B7\u53D6",
|
|
5342
5352
|
inputSchema: {
|
|
5343
5353
|
type: "object",
|
|
5344
5354
|
properties: {
|
|
@@ -5351,7 +5361,7 @@ var init_stream_tools = __esm({
|
|
|
5351
5361
|
},
|
|
5352
5362
|
{
|
|
5353
5363
|
name: "stream_text",
|
|
5354
|
-
description: "
|
|
5364
|
+
description: "\u5206\u9875\u8BFB\u53D6\u6587\u5B57\u5185\u5BB9(TEXT/MTEXT)\u3002\u53EF\u9009\u6309\u56FE\u5C42\u8FC7\u6EE4",
|
|
5355
5365
|
inputSchema: {
|
|
5356
5366
|
type: "object",
|
|
5357
5367
|
properties: {
|
|
@@ -5363,7 +5373,7 @@ var init_stream_tools = __esm({
|
|
|
5363
5373
|
},
|
|
5364
5374
|
{
|
|
5365
5375
|
name: "stream_block_refs",
|
|
5366
|
-
description: "
|
|
5376
|
+
description: "\u5206\u9875\u8BFB\u53D6\u5757\u53C2\u7167\u6570\u636E\u3002\u53EF\u9009\u6309blockName\u8FC7\u6EE4",
|
|
5367
5377
|
inputSchema: {
|
|
5368
5378
|
type: "object",
|
|
5369
5379
|
properties: {
|
|
@@ -5384,7 +5394,7 @@ var init_webhook_tools = __esm({
|
|
|
5384
5394
|
tools26 = [
|
|
5385
5395
|
{
|
|
5386
5396
|
name: "webhook_register",
|
|
5387
|
-
description: "\u6CE8\
|
|
5397
|
+
description: "\u6CE8\u518CWebhook\uFF1A\u5F53CAD\u4E8B\u4EF6\u53D1\u751F(\u5DE5\u5177\u6267\u884C/\u5305\u5B89\u88C5/\u8FDE\u63A5/\u65AD\u5F00/\u9519\u8BEF)\u65F6\u5411\u6307\u5B9AURL\u53D1POST\u901A\u77E5",
|
|
5388
5398
|
inputSchema: {
|
|
5389
5399
|
type: "object",
|
|
5390
5400
|
properties: {
|
|
@@ -5402,12 +5412,12 @@ var init_webhook_tools = __esm({
|
|
|
5402
5412
|
},
|
|
5403
5413
|
{
|
|
5404
5414
|
name: "webhook_list",
|
|
5405
|
-
description: "\u5217\u51FA\u6240\u6709\u5DF2\u6CE8\u518C\
|
|
5415
|
+
description: "\u5217\u51FA\u6240\u6709\u5DF2\u6CE8\u518C\u7684Webhook",
|
|
5406
5416
|
inputSchema: { type: "object", properties: {} }
|
|
5407
5417
|
},
|
|
5408
5418
|
{
|
|
5409
5419
|
name: "webhook_remove",
|
|
5410
|
-
description: "\
|
|
5420
|
+
description: "\u5220\u9664\u5DF2\u6CE8\u518C\u7684Webhook",
|
|
5411
5421
|
inputSchema: {
|
|
5412
5422
|
type: "object",
|
|
5413
5423
|
properties: {
|
|
@@ -5418,7 +5428,7 @@ var init_webhook_tools = __esm({
|
|
|
5418
5428
|
},
|
|
5419
5429
|
{
|
|
5420
5430
|
name: "webhook_log",
|
|
5421
|
-
description: "\
|
|
5431
|
+
description: "\u67E5\u770B\u6307\u5B9AWebhook\u7684\u6267\u884C\u5386\u53F2\u65E5\u5FD7",
|
|
5422
5432
|
inputSchema: {
|
|
5423
5433
|
type: "object",
|
|
5424
5434
|
properties: {
|
|
@@ -5438,7 +5448,7 @@ var init_external_tools = __esm({
|
|
|
5438
5448
|
tools27 = [
|
|
5439
5449
|
{
|
|
5440
5450
|
name: "external_db_query",
|
|
5441
|
-
description: "\u67E5\u8BE2\u5916\u90E8\u6570\u636E\u6E90
|
|
5451
|
+
description: "\u67E5\u8BE2\u5916\u90E8\u6570\u636E\u6E90(CSV/JSON\u6587\u4EF6)\u3002source\u662F\u6587\u4EF6\u540D(\u4E0D\u5E26\u6269\u5C55\u540D)\u3002filters\u652F\u6301\u952E\u503C\u5BF9\u8FC7\u6EE4",
|
|
5442
5452
|
inputSchema: {
|
|
5443
5453
|
type: "object",
|
|
5444
5454
|
properties: {
|
|
@@ -5451,7 +5461,7 @@ var init_external_tools = __esm({
|
|
|
5451
5461
|
},
|
|
5452
5462
|
{
|
|
5453
5463
|
name: "import_external_data",
|
|
5454
|
-
description: "\
|
|
5464
|
+
description: "\u6839\u636E\u5916\u90E8\u6570\u636E\u5728CAD\u4E2D\u521B\u5EFA\u70B9\u5B9E\u4F53\u3002mapping\u5B57\u6BB5\u6620\u5C04x/y/z/label\u5217\u540D",
|
|
5455
5465
|
inputSchema: {
|
|
5456
5466
|
type: "object",
|
|
5457
5467
|
properties: {
|
|
@@ -5464,7 +5474,7 @@ var init_external_tools = __esm({
|
|
|
5464
5474
|
},
|
|
5465
5475
|
{
|
|
5466
5476
|
name: "export_to_external",
|
|
5467
|
-
description: "\
|
|
5477
|
+
description: "\u5C06CAD\u5B9E\u4F53\u6570\u636E\u5BFC\u51FA\u4E3ACSV\u6216JSON\u6587\u4EF6\u3002filter\u53EF\u9009\u6309\u56FE\u5C42\u8FC7\u6EE4",
|
|
5468
5478
|
inputSchema: {
|
|
5469
5479
|
type: "object",
|
|
5470
5480
|
properties: {
|
|
@@ -5477,7 +5487,7 @@ var init_external_tools = __esm({
|
|
|
5477
5487
|
},
|
|
5478
5488
|
{
|
|
5479
5489
|
name: "list_data_sources",
|
|
5480
|
-
description: "\u5217\u51FA ~/.atlisp/data/ \u4E0B\u53EF\u7528\u7684\u5916\u90E8\u6570\u636E\u6E90",
|
|
5490
|
+
description: "\u5217\u51FA ~/.atlisp/data/ \u76EE\u5F55\u4E0B\u53EF\u7528\u7684\u5916\u90E8\u6570\u636E\u6E90\u6587\u4EF6",
|
|
5481
5491
|
inputSchema: {
|
|
5482
5492
|
type: "object",
|
|
5483
5493
|
properties: {},
|
|
@@ -5495,7 +5505,7 @@ var init_sandbox_tools = __esm({
|
|
|
5495
5505
|
tools28 = [
|
|
5496
5506
|
{
|
|
5497
5507
|
name: "sandbox_validate",
|
|
5498
|
-
description: "\
|
|
5508
|
+
description: "\u68C0\u67E5Lisp\u4EE3\u7801\u662F\u5426\u8FDD\u53CD\u5B89\u5168\u89C4\u5219\u3002\u626B\u63CF\u5371\u9669\u51FD\u6570\u5E76\u6309block/warn/allow\u5206\u7EA7\u8FD4\u56DE\u7ED3\u679C",
|
|
5499
5509
|
inputSchema: {
|
|
5500
5510
|
type: "object",
|
|
5501
5511
|
properties: {
|
|
@@ -5507,7 +5517,7 @@ var init_sandbox_tools = __esm({
|
|
|
5507
5517
|
},
|
|
5508
5518
|
{
|
|
5509
5519
|
name: "sandbox_allowlist_add",
|
|
5510
|
-
description: "\u5C06\
|
|
5520
|
+
description: "\u5C06\u89C4\u5219\u7D22\u5F15\u52A0\u5165\u4F1A\u8BDD\u767D\u540D\u5355\uFF0C\u653E\u884C\u8BE5\u89C4\u5219\u7684\u68C0\u67E5",
|
|
5511
5521
|
inputSchema: {
|
|
5512
5522
|
type: "object",
|
|
5513
5523
|
properties: {
|
|
@@ -5519,7 +5529,7 @@ var init_sandbox_tools = __esm({
|
|
|
5519
5529
|
},
|
|
5520
5530
|
{
|
|
5521
5531
|
name: "sandbox_allowlist_clear",
|
|
5522
|
-
description: "\u6E05\
|
|
5532
|
+
description: "\u6E05\u7A7A\u5F53\u524D\u4F1A\u8BDD\u7684\u6240\u6709\u767D\u540D\u5355\u89C4\u5219\uFF0C\u6062\u590D\u5B8C\u6574\u5B89\u5168\u68C0\u67E5",
|
|
5523
5533
|
inputSchema: {
|
|
5524
5534
|
type: "object",
|
|
5525
5535
|
properties: {
|
|
@@ -5539,7 +5549,7 @@ var init_audit_tools = __esm({
|
|
|
5539
5549
|
tools29 = [
|
|
5540
5550
|
{
|
|
5541
5551
|
name: "audit_log_query",
|
|
5542
|
-
description: "\u67E5\u8BE2\u5BA1\u8BA1\u65E5\u5FD7\
|
|
5552
|
+
description: "\u67E5\u8BE2\u5BA1\u8BA1\u65E5\u5FD7\u3002\u652F\u6301\u6309\u5DE5\u5177\u540D\u3001\u65F6\u95F4\u8303\u56F4\u3001\u7ED3\u679C\u72B6\u6001\u3001\u7528\u6237\u3001\u4F1A\u8BDDID\u7B5B\u9009\uFF0C\u652F\u6301\u5206\u9875",
|
|
5543
5553
|
inputSchema: {
|
|
5544
5554
|
type: "object",
|
|
5545
5555
|
properties: {
|
|
@@ -5556,7 +5566,7 @@ var init_audit_tools = __esm({
|
|
|
5556
5566
|
},
|
|
5557
5567
|
{
|
|
5558
5568
|
name: "audit_log_stats",
|
|
5559
|
-
description: "\u83B7\u53D6\u5BA1\u8BA1\u65E5\u5FD7\u7EDF\u8BA1\
|
|
5569
|
+
description: "\u83B7\u53D6\u5BA1\u8BA1\u65E5\u5FD7\u7EDF\u8BA1\uFF1A\u603B\u6761\u76EE\u3001\u5404\u5DE5\u5177\u8C03\u7528\u6B21\u6570\u3001\u9519\u8BEF\u6570\u3001\u65E5\u5FD7\u6587\u4EF6\u5927\u5C0F",
|
|
5560
5570
|
inputSchema: {
|
|
5561
5571
|
type: "object",
|
|
5562
5572
|
properties: {}
|
|
@@ -5573,12 +5583,12 @@ var init_pool_tools = __esm({
|
|
|
5573
5583
|
tools30 = [
|
|
5574
5584
|
{
|
|
5575
5585
|
name: "cad_pool_discover",
|
|
5576
|
-
description:
|
|
5586
|
+
description: '\u901A\u8FC7Windows ROT(\u8FD0\u884C\u5BF9\u8C61\u8868)\u81EA\u52A8\u53D1\u73B0\u6240\u6709\u8FD0\u884C\u4E2D\u7684CAD\u5B9E\u4F8B\u5E76\u52A0\u5165\u8FDE\u63A5\u6C60\u3002\u7528\u6237\u8BF4"\u53D1\u73B0CAD/\u627ECAD"\u65F6\u8C03\u7528',
|
|
5577
5587
|
inputSchema: { type: "object", properties: {} }
|
|
5578
5588
|
},
|
|
5579
5589
|
{
|
|
5580
5590
|
name: "cad_pool_switch",
|
|
5581
|
-
description: "\u5207\u6362\u6D3B\
|
|
5591
|
+
description: "\u5207\u6362\u8FDE\u63A5\u6C60\u7684\u6D3B\u52A8CAD\u5B9E\u4F8B\u3002\u540E\u7EED\u65E0instance\u53C2\u6570\u7684\u5DE5\u5177\u8C03\u7528\u5C06\u8DEF\u7531\u5230\u6B64\u5B9E\u4F8B",
|
|
5582
5592
|
inputSchema: {
|
|
5583
5593
|
type: "object",
|
|
5584
5594
|
properties: {
|
|
@@ -5589,17 +5599,17 @@ var init_pool_tools = __esm({
|
|
|
5589
5599
|
},
|
|
5590
5600
|
{
|
|
5591
5601
|
name: "cad_pool_health",
|
|
5592
|
-
description: "\
|
|
5602
|
+
description: "\u5BF9\u6240\u6709\u5DF2\u8FDE\u63A5\u7684CAD\u5B9E\u4F8B\u6267\u884Cping\u5065\u5EB7\u68C0\u67E5\uFF0C\u8FD4\u56DE\u5404\u5B9E\u4F8B\u72B6\u6001",
|
|
5593
5603
|
inputSchema: { type: "object", properties: {} }
|
|
5594
5604
|
},
|
|
5595
5605
|
{
|
|
5596
5606
|
name: "cad_pool_stats",
|
|
5597
|
-
description: "\u83B7\u53D6\u8FDE\u63A5\u6C60\u7EDF\u8BA1\u4FE1\u606F\
|
|
5607
|
+
description: "\u83B7\u53D6\u8FDE\u63A5\u6C60\u7EDF\u8BA1\u4FE1\u606F\uFF1A\u5B9E\u4F8B\u6570\u3001\u961F\u5217\u5927\u5C0F\u3001\u8FD0\u884C\u65F6\u95F4\u7B49",
|
|
5598
5608
|
inputSchema: { type: "object", properties: {} }
|
|
5599
5609
|
},
|
|
5600
5610
|
{
|
|
5601
5611
|
name: "cad_pool_connect",
|
|
5602
|
-
description: "\u8FDE\u63A5\u5230\u6307\
|
|
5612
|
+
description: "\u624B\u52A8\u8FDE\u63A5\u6307\u5B9ACAD\u5B9E\u4F8B\u5230\u8FDE\u63A5\u6C60\u3002\u652F\u6301\u6307\u5B9Akey(\u6807\u8BC6\u540D)\u3001platform(\u5E73\u53F0)\u3001pid(\u8FDB\u7A0BID)",
|
|
5603
5613
|
inputSchema: {
|
|
5604
5614
|
type: "object",
|
|
5605
5615
|
properties: {
|
|
@@ -5613,7 +5623,7 @@ var init_pool_tools = __esm({
|
|
|
5613
5623
|
},
|
|
5614
5624
|
{
|
|
5615
5625
|
name: "cad_pool_disconnect",
|
|
5616
|
-
description: "\u65AD\u5F00\u5E76\u79FB\u9664\
|
|
5626
|
+
description: "\u4ECE\u8FDE\u63A5\u6C60\u4E2D\u65AD\u5F00\u5E76\u79FB\u9664\u6307\u5B9ACAD\u5B9E\u4F8B",
|
|
5617
5627
|
inputSchema: {
|
|
5618
5628
|
type: "object",
|
|
5619
5629
|
properties: {
|
|
@@ -5624,7 +5634,7 @@ var init_pool_tools = __esm({
|
|
|
5624
5634
|
},
|
|
5625
5635
|
{
|
|
5626
5636
|
name: "cad_pool_list",
|
|
5627
|
-
description: "\u5217\u51FA\u8FDE\u63A5\u6C60\u4E2D\u6240\
|
|
5637
|
+
description: "\u5217\u51FA\u8FDE\u63A5\u6C60\u4E2D\u6240\u6709CAD\u5B9E\u4F8B\u7684key\u3001\u5E73\u53F0\u3001\u7248\u672C\u3001\u8FDE\u63A5\u72B6\u6001\u548C\u6D3B\u8DC3\u6807\u8BB0",
|
|
5628
5638
|
inputSchema: { type: "object", properties: {} }
|
|
5629
5639
|
},
|
|
5630
5640
|
{
|
|
@@ -5654,7 +5664,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5654
5664
|
tools31 = [
|
|
5655
5665
|
{
|
|
5656
5666
|
name: "draw_line",
|
|
5657
|
-
description: "\
|
|
5667
|
+
description: "\u753B\u76F4\u7EBF\u6BB5\u3002p1\u8D77\u70B9 p2\u7EC8\u70B9",
|
|
5658
5668
|
inputSchema: {
|
|
5659
5669
|
type: "object",
|
|
5660
5670
|
properties: {
|
|
@@ -5666,7 +5676,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5666
5676
|
},
|
|
5667
5677
|
{
|
|
5668
5678
|
name: "draw_circle",
|
|
5669
|
-
description: "\
|
|
5679
|
+
description: "\u753B\u5706\u3002\u4E2D\u5FC3\u70B9+\u534A\u5F84",
|
|
5670
5680
|
inputSchema: {
|
|
5671
5681
|
type: "object",
|
|
5672
5682
|
properties: {
|
|
@@ -5678,7 +5688,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5678
5688
|
},
|
|
5679
5689
|
{
|
|
5680
5690
|
name: "draw_arc",
|
|
5681
|
-
description: "\
|
|
5691
|
+
description: "\u753B\u5706\u5F27\u3002\u4E2D\u5FC3\u70B9+\u534A\u5F84+\u8D77\u59CB\u89D2\u5EA6+\u7EC8\u6B62\u89D2\u5EA6\uFF08\u5EA6\uFF09",
|
|
5682
5692
|
inputSchema: {
|
|
5683
5693
|
type: "object",
|
|
5684
5694
|
properties: {
|
|
@@ -5692,7 +5702,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5692
5702
|
},
|
|
5693
5703
|
{
|
|
5694
5704
|
name: "draw_rectangle",
|
|
5695
|
-
description: "\
|
|
5705
|
+
description: "\u753B\u77E9\u5F62\u3002\u4E24\u4E2A\u5BF9\u89D2\u70B9\u786E\u5B9A",
|
|
5696
5706
|
inputSchema: {
|
|
5697
5707
|
type: "object",
|
|
5698
5708
|
properties: {
|
|
@@ -5704,7 +5714,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5704
5714
|
},
|
|
5705
5715
|
{
|
|
5706
5716
|
name: "draw_polygon",
|
|
5707
|
-
description: "\
|
|
5717
|
+
description: "\u753B\u6B63\u591A\u8FB9\u5F62\u3002\u4E2D\u5FC3\u70B9+\u8FB9\u6570(>=3)+\u534A\u5F84",
|
|
5708
5718
|
inputSchema: {
|
|
5709
5719
|
type: "object",
|
|
5710
5720
|
properties: {
|
|
@@ -5717,7 +5727,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5717
5727
|
},
|
|
5718
5728
|
{
|
|
5719
5729
|
name: "draw_ellipse",
|
|
5720
|
-
description: "\
|
|
5730
|
+
description: "\u753B\u692D\u5706\u3002\u4E2D\u5FC3+\u957F\u8F74\u7AEF\u70B9+\u77ED\u8F74\u7AEF\u70B9(\u6216\u77ED\u957F\u6BD4)",
|
|
5721
5731
|
inputSchema: {
|
|
5722
5732
|
type: "object",
|
|
5723
5733
|
properties: {
|
|
@@ -5730,7 +5740,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5730
5740
|
},
|
|
5731
5741
|
{
|
|
5732
5742
|
name: "draw_text",
|
|
5733
|
-
description: "\u521B\u5EFA\u5355\u884C\u6587\u5B57",
|
|
5743
|
+
description: "\u521B\u5EFA\u5355\u884C\u6587\u5B57(TEXT)\u3002\u6307\u5B9A\u5185\u5BB9\u548C\u63D2\u5165\u70B9",
|
|
5734
5744
|
inputSchema: {
|
|
5735
5745
|
type: "object",
|
|
5736
5746
|
properties: {
|
|
@@ -5743,7 +5753,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5743
5753
|
},
|
|
5744
5754
|
{
|
|
5745
5755
|
name: "draw_mtext",
|
|
5746
|
-
description: "\u521B\u5EFA\u591A\u884C\u6587\u5B57",
|
|
5756
|
+
description: "\u521B\u5EFA\u591A\u884C\u6587\u5B57(MTEXT)\u3002\u6307\u5B9A\u5185\u5BB9\u3001\u63D2\u5165\u70B9\u548C\u6587\u672C\u6846\u5BBD\u5EA6",
|
|
5747
5757
|
inputSchema: {
|
|
5748
5758
|
type: "object",
|
|
5749
5759
|
properties: {
|
|
@@ -5756,7 +5766,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5756
5766
|
},
|
|
5757
5767
|
{
|
|
5758
5768
|
name: "draw_polyline",
|
|
5759
|
-
description: "\u521B\u5EFA\u591A\u6BB5\u7EBF\
|
|
5769
|
+
description: "\u521B\u5EFA\u591A\u6BB5\u7EBF(Polyline)\uFF0C\u7531\u76F4\u7EBF\u6BB5\u548C\u5F27\u6BB5\u7EC4\u6210\u7684\u8FDE\u7EED\u7EBF\u3002\u53EF\u95ED\u5408",
|
|
5760
5770
|
inputSchema: {
|
|
5761
5771
|
type: "object",
|
|
5762
5772
|
properties: {
|
|
@@ -5768,7 +5778,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5768
5778
|
},
|
|
5769
5779
|
{
|
|
5770
5780
|
name: "draw_spline",
|
|
5771
|
-
description: "\u521B\u5EFA\u6837\u6761\u66F2\u7EBF",
|
|
5781
|
+
description: "\u521B\u5EFA\u6837\u6761\u66F2\u7EBF(SPLINE)\uFF0C\u901A\u8FC7\u63A7\u5236\u70B9\u62DF\u5408\u5149\u6ED1\u66F2\u7EBF",
|
|
5772
5782
|
inputSchema: {
|
|
5773
5783
|
type: "object",
|
|
5774
5784
|
properties: {
|
|
@@ -5779,7 +5789,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5779
5789
|
},
|
|
5780
5790
|
{
|
|
5781
5791
|
name: "draw_point",
|
|
5782
|
-
description: "\u521B\u5EFA\u70B9",
|
|
5792
|
+
description: "\u521B\u5EFA\u70B9(Point)\u5B9E\u4F53",
|
|
5783
5793
|
inputSchema: {
|
|
5784
5794
|
type: "object",
|
|
5785
5795
|
properties: {
|
|
@@ -5790,7 +5800,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5790
5800
|
},
|
|
5791
5801
|
{
|
|
5792
5802
|
name: "draw_hatch",
|
|
5793
|
-
description: "\u521B\u5EFA\u56FE\u6848\u586B\u5145\
|
|
5803
|
+
description: "\u521B\u5EFA\u56FE\u6848\u586B\u5145\u3002points\u4E3A\u8FB9\u754C\u70B9\u5E8F\u5217\uFF0Cpattern\u4E3A\u586B\u5145\u56FE\u6848\u540D(\u5982ANSI31)",
|
|
5794
5804
|
inputSchema: {
|
|
5795
5805
|
type: "object",
|
|
5796
5806
|
properties: {
|
|
@@ -5802,7 +5812,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5802
5812
|
},
|
|
5803
5813
|
{
|
|
5804
5814
|
name: "draw_helix",
|
|
5805
|
-
description: "\u521B\u5EFA\u87BA\u65CB\
|
|
5815
|
+
description: "\u521B\u5EFA\u87BA\u65CB(Helix)\u3002\u6307\u5B9A\u4E2D\u5FC3\u3001\u9876\u5E95\u534A\u5F84\u3001\u9AD8\u5EA6\u548C\u5708\u6570",
|
|
5806
5816
|
inputSchema: {
|
|
5807
5817
|
type: "object",
|
|
5808
5818
|
properties: {
|
|
@@ -5817,7 +5827,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5817
5827
|
},
|
|
5818
5828
|
{
|
|
5819
5829
|
name: "draw_donut",
|
|
5820
|
-
description: "\
|
|
5830
|
+
description: "\u753B\u5706\u73AF(Donut)\u3002\u6307\u5B9A\u4E2D\u5FC3\u3001\u5185\u5F84\u548C\u5916\u5F84",
|
|
5821
5831
|
inputSchema: {
|
|
5822
5832
|
type: "object",
|
|
5823
5833
|
properties: {
|
|
@@ -5830,7 +5840,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5830
5840
|
},
|
|
5831
5841
|
{
|
|
5832
5842
|
name: "draw_2d_solid",
|
|
5833
|
-
description: "\u521B\
|
|
5843
|
+
description: "\u521B\u5EFA2D\u586B\u5145\u5B9E\u4F53(SOLID)\u3002\u56DB\u4E2A\u70B9\u6784\u6210\u586B\u5145\u533A\u57DF",
|
|
5834
5844
|
inputSchema: {
|
|
5835
5845
|
type: "object",
|
|
5836
5846
|
properties: {
|
|
@@ -5844,7 +5854,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5844
5854
|
},
|
|
5845
5855
|
{
|
|
5846
5856
|
name: "draw_xline",
|
|
5847
|
-
description: "\u521B\u5EFA\u6784\u9020\u7EBF\
|
|
5857
|
+
description: "\u521B\u5EFA\u6784\u9020\u7EBF(XLINE)\u65E0\u9650\u957F\u76F4\u7EBF",
|
|
5848
5858
|
inputSchema: {
|
|
5849
5859
|
type: "object",
|
|
5850
5860
|
properties: {
|
|
@@ -5856,7 +5866,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5856
5866
|
},
|
|
5857
5867
|
{
|
|
5858
5868
|
name: "draw_ray",
|
|
5859
|
-
description: "\u521B\u5EFA\u5C04\u7EBF\
|
|
5869
|
+
description: "\u521B\u5EFA\u5C04\u7EBF(RAY)\u4ECE\u4E00\u70B9\u51FA\u53D1\u7684\u65E0\u9650\u957F\u7EBF",
|
|
5860
5870
|
inputSchema: {
|
|
5861
5871
|
type: "object",
|
|
5862
5872
|
properties: {
|
|
@@ -5868,7 +5878,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5868
5878
|
},
|
|
5869
5879
|
{
|
|
5870
5880
|
name: "draw_leader",
|
|
5871
|
-
description: "\u521B\u5EFA\u5F15\u7EBF\u6807\u6CE8",
|
|
5881
|
+
description: "\u521B\u5EFA\u5F15\u7EBF\u6807\u6CE8(Leader)\u3002\u6307\u5F15\u7EBF\u548C\u6CE8\u91CA\u6587\u5B57",
|
|
5872
5882
|
inputSchema: {
|
|
5873
5883
|
type: "object",
|
|
5874
5884
|
properties: {
|
|
@@ -5880,7 +5890,7 @@ var init_draw_primitive_tools = __esm({
|
|
|
5880
5890
|
},
|
|
5881
5891
|
{
|
|
5882
5892
|
name: "draw_table",
|
|
5883
|
-
description: "\u521B\u5EFA\u8868\u683C",
|
|
5893
|
+
description: "\u521B\u5EFA\u8868\u683C\u3002\u6307\u5B9A\u63D2\u5165\u70B9\u3001\u884C\u5217\u6570\u3001\u884C\u9AD8\u5217\u5BBD",
|
|
5884
5894
|
inputSchema: {
|
|
5885
5895
|
type: "object",
|
|
5886
5896
|
properties: {
|
|
@@ -5904,7 +5914,7 @@ var init_edit_tools = __esm({
|
|
|
5904
5914
|
tools32 = [
|
|
5905
5915
|
{
|
|
5906
5916
|
name: "trim_entity",
|
|
5907
|
-
description: "\u4FEE\u526A\u5B9E\u4F53",
|
|
5917
|
+
description: "\u4FEE\u526A\u5B9E\u4F53(TRIM)\uFF1A\u7528\u526A\u5207\u8FB9\u5207\u6389\u6307\u5B9A\u5B9E\u4F53\u7684\u591A\u4F59\u90E8\u5206",
|
|
5908
5918
|
inputSchema: {
|
|
5909
5919
|
type: "object",
|
|
5910
5920
|
properties: {
|
|
@@ -5916,7 +5926,7 @@ var init_edit_tools = __esm({
|
|
|
5916
5926
|
},
|
|
5917
5927
|
{
|
|
5918
5928
|
name: "extend_entity",
|
|
5919
|
-
description: "\u5EF6\u4F38\u5B9E\u4F53",
|
|
5929
|
+
description: "\u5EF6\u4F38\u5B9E\u4F53(EXTEND)\uFF1A\u5C06\u5B9E\u4F53\u5EF6\u4F38\u5230\u4E0E\u8FB9\u754C\u76F8\u4EA4",
|
|
5920
5930
|
inputSchema: {
|
|
5921
5931
|
type: "object",
|
|
5922
5932
|
properties: {
|
|
@@ -5928,7 +5938,7 @@ var init_edit_tools = __esm({
|
|
|
5928
5938
|
},
|
|
5929
5939
|
{
|
|
5930
5940
|
name: "fillet",
|
|
5931
|
-
description: "\u5706\u89D2\
|
|
5941
|
+
description: "\u5706\u89D2(FILLET)\uFF1A\u5728\u4E24\u4E2A\u5B9E\u4F53\u95F4\u521B\u5EFA\u6307\u5B9A\u534A\u5F84\u7684\u5706\u5F27\u8FC7\u6E21",
|
|
5932
5942
|
inputSchema: {
|
|
5933
5943
|
type: "object",
|
|
5934
5944
|
properties: {
|
|
@@ -5941,7 +5951,7 @@ var init_edit_tools = __esm({
|
|
|
5941
5951
|
},
|
|
5942
5952
|
{
|
|
5943
5953
|
name: "chamfer",
|
|
5944
|
-
description: "\u5012\u89D2\u8FDE\u63A5",
|
|
5954
|
+
description: "\u5012\u89D2(CHAMFER)\uFF1A\u5728\u4E24\u4E2A\u5B9E\u4F53\u95F4\u521B\u5EFA\u6307\u5B9A\u8DDD\u79BB\u7684\u659C\u89D2\u8FDE\u63A5",
|
|
5945
5955
|
inputSchema: {
|
|
5946
5956
|
type: "object",
|
|
5947
5957
|
properties: {
|
|
@@ -5955,7 +5965,7 @@ var init_edit_tools = __esm({
|
|
|
5955
5965
|
},
|
|
5956
5966
|
{
|
|
5957
5967
|
name: "break_entity",
|
|
5958
|
-
description: "\u6253\u65AD\u5B9E\u4F53",
|
|
5968
|
+
description: "\u6253\u65AD(BREAK)\uFF1A\u5728\u5B9E\u4F53\u4E0A\u4E24\u70B9\u4E4B\u95F4\u65AD\u5F00",
|
|
5959
5969
|
inputSchema: {
|
|
5960
5970
|
type: "object",
|
|
5961
5971
|
properties: {
|
|
@@ -5968,7 +5978,7 @@ var init_edit_tools = __esm({
|
|
|
5968
5978
|
},
|
|
5969
5979
|
{
|
|
5970
5980
|
name: "join_entities",
|
|
5971
|
-
description: "\u5408\u5E76\u5B9E\u4F53",
|
|
5981
|
+
description: "\u5408\u5E76(JOIN)\uFF1A\u5C06\u591A\u4E2A\u8FDE\u63A5\u7684\u5B9E\u4F53\u5408\u5E76\u4E3A\u4E00\u4E2A",
|
|
5972
5982
|
inputSchema: {
|
|
5973
5983
|
type: "object",
|
|
5974
5984
|
properties: {
|
|
@@ -5979,7 +5989,7 @@ var init_edit_tools = __esm({
|
|
|
5979
5989
|
},
|
|
5980
5990
|
{
|
|
5981
5991
|
name: "stretch",
|
|
5982
|
-
description: "\u62C9\u4F38\u5B9E\u4F53",
|
|
5992
|
+
description: "\u62C9\u4F38(STRETCH)\uFF1A\u901A\u8FC7\u4EA4\u53C9\u9009\u62E9\u79FB\u52A8\u5B9E\u4F53\u7684\u4E00\u90E8\u5206",
|
|
5983
5993
|
inputSchema: {
|
|
5984
5994
|
type: "object",
|
|
5985
5995
|
properties: {
|
|
@@ -6001,7 +6011,7 @@ var init_viewport_tools = __esm({
|
|
|
6001
6011
|
tools33 = [
|
|
6002
6012
|
{
|
|
6003
6013
|
name: "create_viewport",
|
|
6004
|
-
description: "\u521B\u5EFA\u77E9\u5F62\u89C6\u53E3",
|
|
6014
|
+
description: "\u5728\u5E03\u5C40\u4E2D\u521B\u5EFA\u77E9\u5F62\u89C6\u53E3(Viewport)\u7528\u4E8E\u663E\u793A\u6A21\u578B\u7A7A\u95F4\u5185\u5BB9",
|
|
6005
6015
|
inputSchema: {
|
|
6006
6016
|
type: "object",
|
|
6007
6017
|
properties: {
|
|
@@ -6014,7 +6024,7 @@ var init_viewport_tools = __esm({
|
|
|
6014
6024
|
},
|
|
6015
6025
|
{
|
|
6016
6026
|
name: "create_polygonal_viewport",
|
|
6017
|
-
description: "\u521B\u5EFA\u591A\u8FB9\u5F62\u89C6\u53E3",
|
|
6027
|
+
description: "\u5728\u5E03\u5C40\u4E2D\u521B\u5EFA\u591A\u8FB9\u5F62\u89C6\u53E3",
|
|
6018
6028
|
inputSchema: {
|
|
6019
6029
|
type: "object",
|
|
6020
6030
|
properties: {
|
|
@@ -6026,7 +6036,7 @@ var init_viewport_tools = __esm({
|
|
|
6026
6036
|
},
|
|
6027
6037
|
{
|
|
6028
6038
|
name: "set_viewport_scale",
|
|
6029
|
-
description: "\u8BBE\u7F6E\u89C6\u53E3\u6BD4\u4F8B",
|
|
6039
|
+
description: "\u8BBE\u7F6E\u5E03\u5C40\u89C6\u53E3\u7684\u6BD4\u4F8B(\u5982 100 \u8868\u793A 1:100)",
|
|
6030
6040
|
inputSchema: {
|
|
6031
6041
|
type: "object",
|
|
6032
6042
|
properties: {
|
|
@@ -6038,7 +6048,7 @@ var init_viewport_tools = __esm({
|
|
|
6038
6048
|
},
|
|
6039
6049
|
{
|
|
6040
6050
|
name: "lock_viewport",
|
|
6041
|
-
description: "\u9501\u5B9A\u89C6\u53E3",
|
|
6051
|
+
description: "\u9501\u5B9A\u89C6\u53E3\u6BD4\u4F8B\uFF0C\u9632\u6B62\u7F29\u653E\u65F6\u6BD4\u4F8B\u6539\u53D8",
|
|
6042
6052
|
inputSchema: {
|
|
6043
6053
|
type: "object",
|
|
6044
6054
|
properties: {
|
|
@@ -6049,7 +6059,7 @@ var init_viewport_tools = __esm({
|
|
|
6049
6059
|
},
|
|
6050
6060
|
{
|
|
6051
6061
|
name: "unlock_viewport",
|
|
6052
|
-
description: "\u89E3\u9501\u89C6\u53E3",
|
|
6062
|
+
description: "\u89E3\u9501\u89C6\u53E3\u6BD4\u4F8B",
|
|
6053
6063
|
inputSchema: {
|
|
6054
6064
|
type: "object",
|
|
6055
6065
|
properties: {
|
|
@@ -6060,7 +6070,7 @@ var init_viewport_tools = __esm({
|
|
|
6060
6070
|
},
|
|
6061
6071
|
{
|
|
6062
6072
|
name: "maximize_viewport",
|
|
6063
|
-
description: "\u6700\u5927\u5316\u89C6\u53E3",
|
|
6073
|
+
description: "\u6700\u5927\u5316\u89C6\u53E3\u5230\u5168\u5C4F\u4EE5\u4FBF\u7F16\u8F91",
|
|
6064
6074
|
inputSchema: {
|
|
6065
6075
|
type: "object",
|
|
6066
6076
|
properties: {
|
|
@@ -6071,7 +6081,7 @@ var init_viewport_tools = __esm({
|
|
|
6071
6081
|
},
|
|
6072
6082
|
{
|
|
6073
6083
|
name: "minimize_viewport",
|
|
6074
|
-
description: "\u6700\
|
|
6084
|
+
description: "\u5C06\u6700\u5927\u5316\u89C6\u53E3\u6062\u590D\u5230\u539F\u4F4D\u7F6E",
|
|
6075
6085
|
inputSchema: { type: "object", properties: {} }
|
|
6076
6086
|
}
|
|
6077
6087
|
];
|
|
@@ -6085,12 +6095,12 @@ var init_purge_tools = __esm({
|
|
|
6085
6095
|
tools34 = [
|
|
6086
6096
|
{
|
|
6087
6097
|
name: "purge_all",
|
|
6088
|
-
description:
|
|
6098
|
+
description: '\u4E00\u952E\u6E05\u7406\u6240\u6709\u672A\u4F7F\u7528\u7684\u547D\u540D\u9879(\u5757/\u56FE\u5C42/\u7EBF\u578B/\u6837\u5F0F\u7B49)\u3002\u7528\u6237\u8BF4"\u6E05\u7406/\u7626\u8EAB"\u65F6\u8C03\u7528',
|
|
6089
6099
|
inputSchema: { type: "object", properties: {} }
|
|
6090
6100
|
},
|
|
6091
6101
|
{
|
|
6092
6102
|
name: "purge_blocks",
|
|
6093
|
-
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u5757",
|
|
6103
|
+
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u5757\u5B9A\u4E49\u3002namePattern\u652F\u6301\u901A\u914D\u7B26\u5982 *TEMP*",
|
|
6094
6104
|
inputSchema: {
|
|
6095
6105
|
type: "object",
|
|
6096
6106
|
properties: {
|
|
@@ -6100,7 +6110,7 @@ var init_purge_tools = __esm({
|
|
|
6100
6110
|
},
|
|
6101
6111
|
{
|
|
6102
6112
|
name: "purge_layers",
|
|
6103
|
-
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u56FE\u5C42",
|
|
6113
|
+
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u56FE\u5C42\uFF08\u7A7A\u56FE\u5C42\uFF09",
|
|
6104
6114
|
inputSchema: {
|
|
6105
6115
|
type: "object",
|
|
6106
6116
|
properties: {
|
|
@@ -6110,7 +6120,7 @@ var init_purge_tools = __esm({
|
|
|
6110
6120
|
},
|
|
6111
6121
|
{
|
|
6112
6122
|
name: "purge_styles",
|
|
6113
|
-
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u6837\u5F0F",
|
|
6123
|
+
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u6587\u5B57/\u6807\u6CE8/\u8868\u683C\u6837\u5F0F",
|
|
6114
6124
|
inputSchema: {
|
|
6115
6125
|
type: "object",
|
|
6116
6126
|
properties: {
|
|
@@ -6120,7 +6130,7 @@ var init_purge_tools = __esm({
|
|
|
6120
6130
|
},
|
|
6121
6131
|
{
|
|
6122
6132
|
name: "purge_registered_apps",
|
|
6123
|
-
description: "\u6E05\u7406\u672A\u6CE8\u518C\
|
|
6133
|
+
description: "\u6E05\u7406\u672A\u4F7F\u7528\u7684\u6CE8\u518C\u5E94\u7528\u7A0B\u5E8F(RegApp)",
|
|
6124
6134
|
inputSchema: {
|
|
6125
6135
|
type: "object",
|
|
6126
6136
|
properties: {
|
|
@@ -6130,12 +6140,12 @@ var init_purge_tools = __esm({
|
|
|
6130
6140
|
},
|
|
6131
6141
|
{
|
|
6132
6142
|
name: "drawing_audit",
|
|
6133
|
-
description: "\u5BA1\u8BA1\u5F53\u524D\u56FE\u5F62\
|
|
6143
|
+
description: "\u5BA1\u8BA1\u5E76\u4FEE\u590D\u5F53\u524D\u56FE\u5F62\u4E2D\u7684\u9519\u8BEF(AUDIT)",
|
|
6134
6144
|
inputSchema: { type: "object", properties: {} }
|
|
6135
6145
|
},
|
|
6136
6146
|
{
|
|
6137
6147
|
name: "drawing_recover",
|
|
6138
|
-
description: "\u6062\u590D\u635F\u574F\
|
|
6148
|
+
description: "\u5C1D\u8BD5\u6062\u590D\u635F\u574F\u7684DWG\u6587\u4EF6(RECOVER)",
|
|
6139
6149
|
inputSchema: {
|
|
6140
6150
|
type: "object",
|
|
6141
6151
|
properties: {
|
|
@@ -6146,7 +6156,7 @@ var init_purge_tools = __esm({
|
|
|
6146
6156
|
},
|
|
6147
6157
|
{
|
|
6148
6158
|
name: "overkill",
|
|
6149
|
-
description:
|
|
6159
|
+
description: '\u5220\u9664\u91CD\u53E0/\u91CD\u590D\u7684\u51E0\u4F55\u56FE\u5F62\u3002\u7528\u6237\u8BF4"\u5220\u91CD\u590D/\u6E05\u7406\u91CD\u53E0"\u65F6\u8C03\u7528',
|
|
6150
6160
|
inputSchema: {
|
|
6151
6161
|
type: "object",
|
|
6152
6162
|
properties: {
|
|
@@ -6166,7 +6176,7 @@ var init_spatial_tools = __esm({
|
|
|
6166
6176
|
tools35 = [
|
|
6167
6177
|
{
|
|
6168
6178
|
name: "find_entities_near_point",
|
|
6169
|
-
description: "\u67E5\u627E\u70B9\u9644\u8FD1\u7684\u5B9E\u4F53",
|
|
6179
|
+
description: "\u67E5\u627E\u67D0\u70B9\u9644\u8FD1\u6307\u5B9A\u534A\u5F84\u5185\u7684\u6240\u6709\u5B9E\u4F53",
|
|
6170
6180
|
inputSchema: {
|
|
6171
6181
|
type: "object",
|
|
6172
6182
|
properties: {
|
|
@@ -6178,7 +6188,7 @@ var init_spatial_tools = __esm({
|
|
|
6178
6188
|
},
|
|
6179
6189
|
{
|
|
6180
6190
|
name: "find_entities_in_window",
|
|
6181
|
-
description: "\u7A97\u53E3\u9009\u62E9\u5B9E\u4F53",
|
|
6191
|
+
description: "\u7A97\u53E3\u9009\u62E9(Window)\uFF1A\u5B8C\u5168\u5728\u7A97\u53E3\u5185\u7684\u5B9E\u4F53",
|
|
6182
6192
|
inputSchema: {
|
|
6183
6193
|
type: "object",
|
|
6184
6194
|
properties: {
|
|
@@ -6190,7 +6200,7 @@ var init_spatial_tools = __esm({
|
|
|
6190
6200
|
},
|
|
6191
6201
|
{
|
|
6192
6202
|
name: "find_entities_crossing",
|
|
6193
|
-
description: "\u4EA4\u53C9\u9009\u62E9\u5B9E\u4F53",
|
|
6203
|
+
description: "\u4EA4\u53C9\u9009\u62E9(Crossing)\uFF1A\u7A97\u53E3\u5185\u53CA\u4E0E\u7A97\u53E3\u76F8\u4EA4\u7684\u5B9E\u4F53",
|
|
6194
6204
|
inputSchema: {
|
|
6195
6205
|
type: "object",
|
|
6196
6206
|
properties: {
|
|
@@ -6202,7 +6212,7 @@ var init_spatial_tools = __esm({
|
|
|
6202
6212
|
},
|
|
6203
6213
|
{
|
|
6204
6214
|
name: "find_entities_intersecting",
|
|
6205
|
-
description: "\u680F\u9009\u5B9E\u4F53",
|
|
6215
|
+
description: "\u680F\u9009(Fence)\uFF1A\u4E0E\u6298\u7EBF\u76F8\u4EA4\u7684\u6240\u6709\u5B9E\u4F53",
|
|
6206
6216
|
inputSchema: {
|
|
6207
6217
|
type: "object",
|
|
6208
6218
|
properties: {
|
|
@@ -6213,7 +6223,7 @@ var init_spatial_tools = __esm({
|
|
|
6213
6223
|
},
|
|
6214
6224
|
{
|
|
6215
6225
|
name: "find_entities_in_polygon",
|
|
6216
|
-
description: "\u591A\u8FB9\u5F62\u9009\u62E9\u5B9E\u4F53",
|
|
6226
|
+
description: "\u591A\u8FB9\u5F62\u9009\u62E9(WPolygon)\uFF1A\u5B8C\u5168\u5728\u591A\u8FB9\u5F62\u5185\u7684\u5B9E\u4F53",
|
|
6217
6227
|
inputSchema: {
|
|
6218
6228
|
type: "object",
|
|
6219
6229
|
properties: {
|
|
@@ -6224,7 +6234,7 @@ var init_spatial_tools = __esm({
|
|
|
6224
6234
|
},
|
|
6225
6235
|
{
|
|
6226
6236
|
name: "get_bounding_box",
|
|
6227
|
-
description: "\u83B7\u53D6\u5B9E\u4F53\u5305\u56F4\u76D2",
|
|
6237
|
+
description: "\u83B7\u53D6\u5B9E\u4F53\u7684\u5305\u56F4\u76D2(\u6700\u5C0F\u5916\u63A5\u77E9\u5F62)\u5DE6\u4E0B\u89D2\u548C\u53F3\u4E0A\u89D2\u5750\u6807",
|
|
6228
6238
|
inputSchema: {
|
|
6229
6239
|
type: "object",
|
|
6230
6240
|
properties: {
|
|
@@ -6244,7 +6254,7 @@ var init_text_tools = __esm({
|
|
|
6244
6254
|
tools36 = [
|
|
6245
6255
|
{
|
|
6246
6256
|
name: "find_text",
|
|
6247
|
-
description: "\
|
|
6257
|
+
description: '\u5728DWG\u4E2D\u641C\u7D22\u6587\u5B57\u5185\u5BB9\u3002pattern\u652F\u6301\u901A\u914D\u7B26(*?)\u3002\u7528\u6237\u8BF4"\u627E\u6587\u5B57/\u641C\u7D22\u6587\u5B57"\u65F6\u8C03\u7528',
|
|
6248
6258
|
inputSchema: {
|
|
6249
6259
|
type: "object",
|
|
6250
6260
|
properties: {
|
|
@@ -6256,7 +6266,7 @@ var init_text_tools = __esm({
|
|
|
6256
6266
|
},
|
|
6257
6267
|
{
|
|
6258
6268
|
name: "replace_text",
|
|
6259
|
-
description: "\u66FF\u6362\u6587\
|
|
6269
|
+
description: "\u67E5\u627E\u5E76\u66FF\u6362\u6587\u5B57\u5185\u5BB9\u3002\u652F\u6301\u901A\u914D\u7B26\u548C\u5927\u5C0F\u5199\u63A7\u5236",
|
|
6260
6270
|
inputSchema: {
|
|
6261
6271
|
type: "object",
|
|
6262
6272
|
properties: {
|
|
@@ -6269,7 +6279,7 @@ var init_text_tools = __esm({
|
|
|
6269
6279
|
},
|
|
6270
6280
|
{
|
|
6271
6281
|
name: "set_text_height",
|
|
6272
|
-
description: "\
|
|
6282
|
+
description: "\u4FEE\u6539\u5355\u884C/\u591A\u884C\u6587\u5B57\u7684\u9AD8\u5EA6",
|
|
6273
6283
|
inputSchema: {
|
|
6274
6284
|
type: "object",
|
|
6275
6285
|
properties: {
|
|
@@ -6281,7 +6291,7 @@ var init_text_tools = __esm({
|
|
|
6281
6291
|
},
|
|
6282
6292
|
{
|
|
6283
6293
|
name: "set_text_style_name",
|
|
6284
|
-
description: "\
|
|
6294
|
+
description: "\u4FEE\u6539\u6587\u5B57\u6240\u4F7F\u7528\u7684\u6587\u5B57\u6837\u5F0F",
|
|
6285
6295
|
inputSchema: {
|
|
6286
6296
|
type: "object",
|
|
6287
6297
|
properties: {
|
|
@@ -6293,7 +6303,7 @@ var init_text_tools = __esm({
|
|
|
6293
6303
|
},
|
|
6294
6304
|
{
|
|
6295
6305
|
name: "justify_text",
|
|
6296
|
-
description: "\u8BBE\u7F6E\u6587\u5B57\u5BF9\u9F50\u65B9\u5F0F",
|
|
6306
|
+
description: "\u8BBE\u7F6E\u6587\u5B57\u7684\u5BF9\u9F50\u65B9\u5F0F\u3002TL/TC/TR/ML/MC/MR/BL/BC/BR",
|
|
6297
6307
|
inputSchema: {
|
|
6298
6308
|
type: "object",
|
|
6299
6309
|
properties: {
|
|
@@ -6305,7 +6315,7 @@ var init_text_tools = __esm({
|
|
|
6305
6315
|
},
|
|
6306
6316
|
{
|
|
6307
6317
|
name: "convert_text_to_mtext",
|
|
6308
|
-
description: "\u6587\
|
|
6318
|
+
description: "\u5C06\u5355\u884C\u6587\u5B57(TEXT)\u8F6C\u6362\u4E3A\u591A\u884C\u6587\u5B57(MTEXT)",
|
|
6309
6319
|
inputSchema: {
|
|
6310
6320
|
type: "object",
|
|
6311
6321
|
properties: {
|
|
@@ -6316,7 +6326,7 @@ var init_text_tools = __esm({
|
|
|
6316
6326
|
},
|
|
6317
6327
|
{
|
|
6318
6328
|
name: "explode_text",
|
|
6319
|
-
description: "\
|
|
6329
|
+
description: "\u5C06\u6587\u5B57\u5206\u89E3\u4E3A\u7EBF\u6761(\u53D8\u6210\u51E0\u4F55\u56FE\u5F62\uFF0C\u4E0D\u53EF\u9006)",
|
|
6320
6330
|
inputSchema: {
|
|
6321
6331
|
type: "object",
|
|
6322
6332
|
properties: {
|
|
@@ -6336,7 +6346,7 @@ var init_skill_tools = __esm({
|
|
|
6336
6346
|
tools37 = [
|
|
6337
6347
|
{
|
|
6338
6348
|
name: "skill_search",
|
|
6339
|
-
description: "\u5728\u8FDC\u7A0B\u6CE8\u518C\u8868\u4E2D\u641C\u7D22\u53EF\u5B89\u88C5\
|
|
6349
|
+
description: "\u5728\u8FDC\u7A0B\u6CE8\u518C\u8868\u4E2D\u641C\u7D22\u53EF\u5B89\u88C5\u7684Skill",
|
|
6340
6350
|
inputSchema: {
|
|
6341
6351
|
type: "object",
|
|
6342
6352
|
properties: {
|
|
@@ -6347,7 +6357,7 @@ var init_skill_tools = __esm({
|
|
|
6347
6357
|
},
|
|
6348
6358
|
{
|
|
6349
6359
|
name: "skill_install",
|
|
6350
|
-
description: "\u4ECE\u8FDC\u7A0B\u6CE8\u518C\u8868\u4E0B\u8F7D\u5E76\u5B89\
|
|
6360
|
+
description: "\u4ECE\u8FDC\u7A0B\u6CE8\u518C\u8868\u4E0B\u8F7D\u5E76\u5B89\u88C5Skill\u5230\u672C\u5730",
|
|
6351
6361
|
inputSchema: {
|
|
6352
6362
|
type: "object",
|
|
6353
6363
|
properties: {
|
|
@@ -6358,12 +6368,12 @@ var init_skill_tools = __esm({
|
|
|
6358
6368
|
},
|
|
6359
6369
|
{
|
|
6360
6370
|
name: "skill_list_installed",
|
|
6361
|
-
description: "\u5217\u51FA\u6240\u6709\u5DF2\u5B89\u88C5\u7684\u672C\
|
|
6371
|
+
description: "\u5217\u51FA\u6240\u6709\u5DF2\u5B89\u88C5\u7684\u672C\u5730Skill",
|
|
6362
6372
|
inputSchema: { type: "object", properties: {} }
|
|
6363
6373
|
},
|
|
6364
6374
|
{
|
|
6365
6375
|
name: "skill_uninstall",
|
|
6366
|
-
description: "\u5378\u8F7D\u5DF2\u5B89\u88C5\
|
|
6376
|
+
description: "\u5378\u8F7D\u5DF2\u5B89\u88C5\u7684Skill",
|
|
6367
6377
|
inputSchema: {
|
|
6368
6378
|
type: "object",
|
|
6369
6379
|
properties: {
|
|
@@ -6374,7 +6384,7 @@ var init_skill_tools = __esm({
|
|
|
6374
6384
|
},
|
|
6375
6385
|
{
|
|
6376
6386
|
name: "skill_list_categories",
|
|
6377
|
-
description: "\u5217\u51FA\u8FDC\u7A0B\u6CE8\u518C\u8868\u4E2D\u7684\u6240\
|
|
6387
|
+
description: "\u5217\u51FA\u8FDC\u7A0B\u6CE8\u518C\u8868\u4E2D\u7684\u6240\u6709Skill\u5206\u7C7B\u6807\u7B7E",
|
|
6378
6388
|
inputSchema: { type: "object", properties: {} }
|
|
6379
6389
|
}
|
|
6380
6390
|
];
|
|
@@ -6386,11 +6396,11 @@ var tools38;
|
|
|
6386
6396
|
var init_context_tools = __esm({
|
|
6387
6397
|
"src/tools/context-tools.js"() {
|
|
6388
6398
|
tools38 = [
|
|
6389
|
-
{ name: "agent_set_context", description: "\u5728\u4F1A\u8BDD\u4E2D\u5B58\
|
|
6390
|
-
{ name: "agent_get_context", description: "\
|
|
6391
|
-
{ name: "agent_list_context", description: "\u5217\u51FA\u4F1A\u8BDD\u4E2D\
|
|
6392
|
-
{ name: "agent_delete_context", description: "\u5220\u9664\u4F1A\u8BDD\u4E2D\u7684\u952E", inputSchema: { type: "object", properties: { key: { type: "string", description: "\u952E\u540D" } }, required: ["key"] } },
|
|
6393
|
-
{ name: "agent_clear_context", description: "\u6E05\
|
|
6399
|
+
{ name: "agent_set_context", description: "\u5728\u5F53\u524D\u4F1A\u8BDD\u4E2D\u5B58\u4E00\u4E2A\u952E\u503C\u5BF9\uFF0C\u540E\u7EED\u5BF9\u8BDD\u53EF\u8BFB\u53D6\u3002\u9002\u5408\u8DE8\u6B65\u9AA4\u4F20\u53C2", inputSchema: { type: "object", properties: { key: { type: "string", description: "\u952E\u540D" }, value: { type: "string", description: "\u503C" } }, required: ["key", "value"] } },
|
|
6400
|
+
{ name: "agent_get_context", description: "\u8BFB\u53D6\u5F53\u524D\u4F1A\u8BDD\u4E2D\u4E4B\u524D\u5B58\u7684\u952E\u503C", inputSchema: { type: "object", properties: { key: { type: "string", description: "\u952E\u540D" } }, required: ["key"] } },
|
|
6401
|
+
{ name: "agent_list_context", description: "\u5217\u51FA\u5F53\u524D\u4F1A\u8BDD\u4E2D\u6240\u6709\u952E\u540D\uFF08\u4E0D\u542B\u503C\uFF09", inputSchema: { type: "object", properties: {} } },
|
|
6402
|
+
{ name: "agent_delete_context", description: "\u5220\u9664\u5F53\u524D\u4F1A\u8BDD\u4E2D\u7684\u6307\u5B9A\u952E", inputSchema: { type: "object", properties: { key: { type: "string", description: "\u952E\u540D" } }, required: ["key"] } },
|
|
6403
|
+
{ name: "agent_clear_context", description: "\u6E05\u7A7A\u5F53\u524D\u4F1A\u8BDD\u7684\u6240\u6709\u4E0A\u4E0B\u6587", inputSchema: { type: "object", properties: {} } }
|
|
6394
6404
|
];
|
|
6395
6405
|
}
|
|
6396
6406
|
});
|
|
@@ -6402,7 +6412,7 @@ var init_batch_transaction_tools = __esm({
|
|
|
6402
6412
|
tools39 = [
|
|
6403
6413
|
{
|
|
6404
6414
|
name: "batch_transaction",
|
|
6405
|
-
description: "\u6279\u91CF\
|
|
6415
|
+
description: "\u4E8B\u52A1\u6027\u6279\u91CF\u64CD\u4F5C\uFF1A\u5C06\u591A\u4E2A\u5DE5\u5177\u8C03\u7528\u5305\u88C5\u5728\u4E00\u4E2A\u64A4\u9500\u7EC4\u4E2D\u3002\u4EFB\u4E00\u5931\u8D25\u81EA\u52A8\u56DE\u6EDA\u5168\u90E8\u3002\u9002\u5408\u9700\u8981\u539F\u5B50\u6027\u7684\u64CD\u4F5C",
|
|
6406
6416
|
inputSchema: {
|
|
6407
6417
|
type: "object",
|
|
6408
6418
|
properties: {
|
|
@@ -6433,7 +6443,7 @@ var init_lint_tools = __esm({
|
|
|
6433
6443
|
tools40 = [
|
|
6434
6444
|
{
|
|
6435
6445
|
name: "analyze_lisp_code",
|
|
6436
|
-
description: "\u5206\
|
|
6446
|
+
description: "\u5206\u6790AutoLISP\u4EE3\u7801\u8D28\u91CF(70+\u68C0\u67E5\u89C4\u5219:\u62EC\u53F7/\u53C2\u6570/\u5371\u9669\u51FD\u6570/\u672A\u4F7F\u7528\u53D8\u91CF\u7B49)\u3002\u8FD4\u56DEJSON\u5206\u6790\u62A5\u544A",
|
|
6437
6447
|
inputSchema: {
|
|
6438
6448
|
type: "object",
|
|
6439
6449
|
properties: {
|
|
@@ -6448,7 +6458,7 @@ var init_lint_tools = __esm({
|
|
|
6448
6458
|
},
|
|
6449
6459
|
{
|
|
6450
6460
|
name: "format_lisp_code",
|
|
6451
|
-
description: "\u683C\u5F0F\
|
|
6461
|
+
description: "\u683C\u5F0F\u5316AutoLISP\u4EE3\u7801\uFF1A\u8C03\u6574\u7F29\u8FDB\u548C\u5BF9\u9F50\u3002tabWidth\u63A7\u5236\u7F29\u8FDB\u7A7A\u683C\u6570",
|
|
6452
6462
|
inputSchema: {
|
|
6453
6463
|
type: "object",
|
|
6454
6464
|
properties: {
|
|
@@ -6460,7 +6470,7 @@ var init_lint_tools = __esm({
|
|
|
6460
6470
|
},
|
|
6461
6471
|
{
|
|
6462
6472
|
name: "list_lint_rules",
|
|
6463
|
-
description: "\u5217\u51FA
|
|
6473
|
+
description: "\u5217\u51FA\u6240\u6709\u53EF\u7528\u7684Lint\u68C0\u67E5\u89C4\u5219\u53CA\u5176\u8BF4\u660E",
|
|
6464
6474
|
inputSchema: {
|
|
6465
6475
|
type: "object",
|
|
6466
6476
|
properties: {}
|
|
@@ -6468,7 +6478,7 @@ var init_lint_tools = __esm({
|
|
|
6468
6478
|
},
|
|
6469
6479
|
{
|
|
6470
6480
|
name: "lint_project",
|
|
6471
|
-
description: "\
|
|
6481
|
+
description: "\u6279\u91CF\u5206\u6790\u76EE\u5F55\u4E2D\u6240\u6709AutoLISP\u6587\u4EF6\u7684\u4EE3\u7801\u8D28\u91CF\u3002\u8DE8\u6587\u4EF6\u68C0\u6D4B\u60AC\u7A7Adefun/\u91CD\u590D\u5B9A\u4E49/\u5FAA\u73AF\u5F15\u7528",
|
|
6472
6482
|
inputSchema: {
|
|
6473
6483
|
type: "object",
|
|
6474
6484
|
properties: {
|
|
@@ -6492,7 +6502,7 @@ var init_debug_tools = __esm({
|
|
|
6492
6502
|
tools41 = [
|
|
6493
6503
|
{
|
|
6494
6504
|
name: "debug_start",
|
|
6495
|
-
description: "\u542F\u52A8\u4EA4\u4E92\
|
|
6505
|
+
description: "\u542F\u52A8\u4EA4\u4E92\u5F0FLisp\u8C03\u8BD5\u4F1A\u8BDD\u3002\u5C06\u4EE3\u7801\u5206\u5757\uFF0C\u652F\u6301\u65AD\u70B9\u548C\u53D8\u91CF\u8FFD\u8E2A",
|
|
6496
6506
|
inputSchema: {
|
|
6497
6507
|
type: "object",
|
|
6498
6508
|
properties: {
|
|
@@ -6520,7 +6530,7 @@ var init_debug_tools = __esm({
|
|
|
6520
6530
|
},
|
|
6521
6531
|
{
|
|
6522
6532
|
name: "debug_step",
|
|
6523
|
-
description: "\
|
|
6533
|
+
description: "\u5355\u6B65\u6267\u884C(step)\u6216\u7EE7\u7EED\u5230\u4E0B\u4E00\u65AD\u70B9(continue)",
|
|
6524
6534
|
inputSchema: {
|
|
6525
6535
|
type: "object",
|
|
6526
6536
|
properties: {
|
|
@@ -6532,7 +6542,7 @@ var init_debug_tools = __esm({
|
|
|
6532
6542
|
},
|
|
6533
6543
|
{
|
|
6534
6544
|
name: "debug_evaluate",
|
|
6535
|
-
description: "\u8C03\u8BD5\
|
|
6545
|
+
description: "\u5728\u8C03\u8BD5\u4F1A\u8BDD\u4E2D\u5373\u65F6\u6C42\u503C\u4EFB\u610FLisp\u8868\u8FBE\u5F0F",
|
|
6536
6546
|
inputSchema: {
|
|
6537
6547
|
type: "object",
|
|
6538
6548
|
properties: {
|
|
@@ -6544,7 +6554,7 @@ var init_debug_tools = __esm({
|
|
|
6544
6554
|
},
|
|
6545
6555
|
{
|
|
6546
6556
|
name: "debug_get_state",
|
|
6547
|
-
description: "\u67E5\u8BE2\u8C03\u8BD5\u4F1A\u8BDD\u5F53\u524D\
|
|
6557
|
+
description: "\u67E5\u8BE2\u5F53\u524D\u8C03\u8BD5\u4F1A\u8BDD\u7684\u72B6\u6001\uFF08\u5F53\u524D\u5757\u3001\u53D8\u91CF\u503C\u7B49\uFF09",
|
|
6548
6558
|
inputSchema: {
|
|
6549
6559
|
type: "object",
|
|
6550
6560
|
properties: {
|
|
@@ -6555,7 +6565,7 @@ var init_debug_tools = __esm({
|
|
|
6555
6565
|
},
|
|
6556
6566
|
{
|
|
6557
6567
|
name: "debug_stop",
|
|
6558
|
-
description: "\u505C\u6B62\u8C03\u8BD5\u4F1A\u8BDD\uFF0C\u6E05\
|
|
6568
|
+
description: "\u505C\u6B62\u8C03\u8BD5\u4F1A\u8BDD\uFF0C\u6E05\u7406CAD\u4E2D\u7684\u8F85\u52A9\u53D8\u91CF\u548C\u51FD\u6570",
|
|
6559
6569
|
inputSchema: {
|
|
6560
6570
|
type: "object",
|
|
6561
6571
|
properties: {
|
|
@@ -6575,7 +6585,7 @@ var init_concurrent_tools = __esm({
|
|
|
6575
6585
|
tools42 = [
|
|
6576
6586
|
{
|
|
6577
6587
|
name: "batch_concurrent_tasks",
|
|
6578
|
-
description: "\
|
|
6588
|
+
description: "\u8DE8\u591A\u4E2ACAD\u5B9E\u4F8B\u5E76\u53D1\u6267\u884C\u4E0D\u540C\u5DE5\u5177\u3002\u5404\u4EFB\u52A1\u72EC\u7ACB\u8FD0\u884C(\u4E00\u4E2A\u5931\u8D25\u4E0D\u5F71\u54CD\u5176\u4ED6)\u3002\u9700\u6307\u5B9A\u6BCF\u4E2A\u4EFB\u52A1\u7684tool/args/instance",
|
|
6579
6589
|
inputSchema: {
|
|
6580
6590
|
type: "object",
|
|
6581
6591
|
properties: {
|
|
@@ -6621,7 +6631,7 @@ function getToolCategory(name) {
|
|
|
6621
6631
|
if (/^(create_text|create_mleader|create_linetype|list_text|list_linetype|list_mleader|load_linetype|create_dimension_style|set_dimstyle|list_dimension_styles|set_mleader_style)/.test(n)) return "\u6837\u5F0F";
|
|
6622
6632
|
if (/^(purge_|drawing_audit|drawing_recover|overkill)/.test(n)) return "\u6E05\u7406";
|
|
6623
6633
|
if (/^(find_text|replace_text|set_text_|justify_|convert_text|explode_text)/.test(n)) return "\u6587\u5B57";
|
|
6624
|
-
if (/^(eval_lisp|connect_cad|get_cad|get_platform|get_system|at_command|new_document|bring_to_front|install_atlisp|init_atlisp|get_system_status)/.test(n)) return "\u7CFB\u7EDF";
|
|
6634
|
+
if (/^(eval_lisp|open_cad|connect_cad|get_cad|get_platform|get_system|at_command|new_document|bring_to_front|install_atlisp|init_atlisp|get_system_status)/.test(n)) return "\u7CFB\u7EDF";
|
|
6625
6635
|
if (/^(list_packages|search_packages|install_package|get_function_usage|list_symbols|import_funlib)/.test(n)) return "\u5305\u4E0E\u51FD\u6570";
|
|
6626
6636
|
if (/^(watch_|lisp_repl|webhook_|sandbox_|audit_|cad_pool_|external_|list_data|export_to|import_external)/.test(n)) return "\u9AD8\u7EA7";
|
|
6627
6637
|
if (/^(list_prompts|get_prompt|search_tools|list_tools_by_category|get_tool_info)/.test(n)) return "\u5143\u5DE5\u5177";
|
|
@@ -6807,6 +6817,7 @@ var init_tools = __esm({
|
|
|
6807
6817
|
"save_dwg",
|
|
6808
6818
|
"init_atlisp",
|
|
6809
6819
|
"install_atlisp",
|
|
6820
|
+
"open_cad",
|
|
6810
6821
|
"connect_cad",
|
|
6811
6822
|
"bring_to_front",
|
|
6812
6823
|
"cad_pool_connect",
|
|
@@ -8532,9 +8543,27 @@ __export(cad_handlers_exports, {
|
|
|
8532
8543
|
installAtlisp: () => installAtlisp,
|
|
8533
8544
|
listFunctionsInCad: () => listFunctionsInCad,
|
|
8534
8545
|
newDocument: () => newDocument,
|
|
8546
|
+
openCad: () => openCad,
|
|
8535
8547
|
setSystemVariable: () => setSystemVariable
|
|
8536
8548
|
});
|
|
8537
8549
|
import iconv from "iconv-lite";
|
|
8550
|
+
async function openCad(platform = null) {
|
|
8551
|
+
log(`open_cad called${platform ? ` (target: ${platform})` : ""}`);
|
|
8552
|
+
try {
|
|
8553
|
+
const connected = await cad.connect(platform);
|
|
8554
|
+
if (!connected) {
|
|
8555
|
+
return mcpError("\u672A\u80FD\u6253\u5F00\u6216\u8FDE\u63A5 CAD\uFF0C\u8BF7\u786E\u4FDD CAD \u5DF2\u5B89\u88C5");
|
|
8556
|
+
}
|
|
8557
|
+
const platformName = cad.getPlatform();
|
|
8558
|
+
const version3 = cad.getVersion();
|
|
8559
|
+
await cad.bringToFront();
|
|
8560
|
+
initAtlisp().catch((e) => log(`open_cad: initAtlisp failed: ${e.message}`));
|
|
8561
|
+
return mcpSuccess(`\u5DF2\u6253\u5F00 ${platformName} ${version3} \u5E76\u5207\u6362\u5230\u524D\u53F0`);
|
|
8562
|
+
} catch (e) {
|
|
8563
|
+
log("open_cad error: " + e.message);
|
|
8564
|
+
return mcpError(`\u6253\u5F00 CAD \u5931\u8D25: ${e.message}`);
|
|
8565
|
+
}
|
|
8566
|
+
}
|
|
8538
8567
|
async function connectCad(platform = null) {
|
|
8539
8568
|
log(`connect_cad called${platform ? ` (target: ${platform})` : ""}, cad.connected before: ${cad.connected}`);
|
|
8540
8569
|
try {
|
|
@@ -16534,6 +16563,7 @@ var init_mcp_tools = __esm({
|
|
|
16534
16563
|
});
|
|
16535
16564
|
TOOL_HANDLERS = {
|
|
16536
16565
|
// === CAD Connection ===
|
|
16566
|
+
open_cad: lazy("open_cad", (a) => a?.platform),
|
|
16537
16567
|
connect_cad: lazy("connect_cad", (a) => a?.platform),
|
|
16538
16568
|
get_platform_info: () => ({ content: [{ type: "text", text: `\u652F\u6301\u7684 CAD \u5E73\u53F0:
|
|
16539
16569
|
${CAD_PLATFORMS.join("\n")}
|