-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoolset.ts
More file actions
402 lines (350 loc) · 10.9 KB
/
Copy pathtoolset.ts
File metadata and controls
402 lines (350 loc) · 10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/**
* ToolSet Resource Class
*
* ToolSet 资源类,用于管理 ToolSet 资源。
* Resource class for managing ToolSet resources.
*/
import { Config } from '../utils/config';
import { logger } from '../utils/log';
import { listAllResourcesFunction, updateObjectProperties } from '../utils/resource';
import {
ToolSetCreateInput,
ToolSetData,
ToolSetListInput,
ToolSetSpec,
ToolSetStatus,
ToolSetUpdateInput,
} from './model';
/**
* ToolSet resource class
*/
export class ToolSet implements ToolSetData {
name?: string;
uid?: string;
kind?: string;
description?: string;
createdTime?: string;
generation?: number;
labels?: Record<string, string>;
spec?: ToolSetSpec;
status?: ToolSetStatus;
private _config?: Config;
constructor(data?: any, config?: Config) {
if (data) {
updateObjectProperties(this, data);
}
this._config = config;
}
/**
* Get DevS client
*/
private static getClient() {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ToolSetClient } = require('./client');
return new ToolSetClient();
}
uniqIdCallback = () => this.name;
/**
* Create a new ToolSet
*/
static async create(params: { input: ToolSetCreateInput; config?: Config }): Promise<ToolSet> {
const { input, config } = params;
return await ToolSet.getClient().create({ input, config });
}
/**
* Delete a ToolSet by Name
*/
static async delete(params: { name: string; config?: Config }): Promise<ToolSet> {
const { name, config } = params;
return await ToolSet.getClient().delete({ name, config });
}
/**
* Get a ToolSet by Name
*/
static async get(params: { name: string; config?: Config }): Promise<ToolSet> {
const { name, config } = params;
return await ToolSet.getClient().get({ name, config });
}
/**
* List ToolSets
*/
static list: /**
* @deprecated
*/
| ((input?: ToolSetListInput, config?: Config) => Promise<ToolSet[]>)
/**
* 枚举 ToolSet 列表 / List ToolSet list
*/
| ((params?: { input?: ToolSetListInput; config?: Config }) => Promise<ToolSet[]>) = async (
...args: any
): Promise<ToolSet[]> => {
let input: ToolSetListInput | undefined;
let config: Config | undefined;
if (args.length >= 1 && 'input' in args[0]) {
input = args[0].input;
} else {
input = args[0];
}
if (args.length >= 1 && 'config' in args[0]) {
config = args[0].config;
} else if (args.length > 1 && args[1] instanceof Config) {
config = args[1];
}
return await this.getClient().list({
input: {
...input,
} as ToolSetListInput,
config,
});
};
static listAll: /**
* @deprecated
*/
| ((
options?: { prefix?: string; labels?: Record<string, string> },
config?: Config
) => Promise<ToolSet[]>)
/**
* 枚举 ToolSet 列表 / List ToolSet list
*/
| ((params?: { input?: ToolSetListInput; config?: Config }) => Promise<ToolSet[]>) = async (
...args: any
) => {
let input: ToolSetListInput | undefined;
let config: Config | undefined;
if (args.length >= 1 && 'input' in args[0]) {
input = args[0].input;
} else {
input = args[0];
}
if (args.length >= 1 && 'config' in args[0]) {
config = args[0].config;
} else if (args.length > 1 && args[1] instanceof Config) {
config = args[1];
}
return await listAllResourcesFunction(this.list as any)({ ...input, config });
};
/**
* Update a ToolSet by Name
*/
static async update(params: {
name: string;
input: ToolSetUpdateInput;
config?: Config;
}): Promise<ToolSet> {
const { name, input, config } = params;
return await ToolSet.getClient().update({ name, input, config });
}
/**
* Delete this toolset
*/
delete = async (params?: { config?: Config }): Promise<ToolSet> => {
const config = params?.config;
if (!this.name) {
throw new Error('name is required to delete a ToolSet');
}
const result = await ToolSet.delete({
name: this.name,
config: config ?? this._config,
});
updateObjectProperties(this, result);
return this;
};
/**
* Update this toolset
*/
update = async (params: { input: ToolSetUpdateInput; config?: Config }): Promise<ToolSet> => {
const { input, config } = params;
if (!this.name) {
throw new Error('name is required to update a ToolSet');
}
const result = await ToolSet.update({
name: this.name,
input,
config: config ?? this._config,
});
updateObjectProperties(this, result);
return this;
};
/**
* Refresh this toolset's data
*/
refresh = async (params?: { config?: Config }): Promise<ToolSet> => {
const config = params?.config;
if (!this.name) {
throw new Error('name is required to refresh a ToolSet');
}
const result = await ToolSet.get({
name: this.name,
config: config ?? this._config,
});
updateObjectProperties(this, result);
return this;
};
/**
* Get toolset type
* 获取工具集类型
*/
type(): string | undefined {
return this.spec?.schema?.type;
}
/**
* List tools (async)
* 异步获取工具列表,返回统一的 ToolInfo 列表
*/
listToolsAsync = async (params?: { config?: Config }): Promise<any[]> => {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ToolSetSchemaType } = require('./model');
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ToolInfo } = require('./model');
if (this.type() === ToolSetSchemaType.MCP) {
// MCP tools
const mcpTools = this.status?.outputs?.tools || [];
return mcpTools.map((tool: any) => ToolInfo.fromMCPTool(tool));
} else if (this.type() === ToolSetSchemaType.OPENAPI) {
// OpenAPI tools - use toApiSet
const apiset = await this.toApiSet(params);
return apiset.tools;
}
return [];
};
/**
* List tools (sync wrapper)
* 同步获取工具列表,返回统一的 ToolInfo 列表
*/
listTools = (config?: Config): Promise<any[]> => {
return this.listToolsAsync({ config });
};
/**
* Call tool (async)
* 异步调用工具,统一使用 ApiSet 实现
*/
callToolAsync = async (
name: string,
args?: Record<string, unknown>,
config?: Config
): Promise<any> => {
const apiset = await this.toApiSet({ config });
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ToolSetSchemaType } = require('./model');
// For OpenAPI, may need to resolve operation name
// 对于 OpenAPI,可能需要解析 operation name
if (this.type() === ToolSetSchemaType.OPENAPI) {
const tool = apiset.getTool(name);
if (!tool) {
// Try to find via tool_id mapping
// 尝试通过 tool_id 映射查找
const openApiTools = (this.status?.outputs as any)?.openApiTools || [];
for (const toolMeta of openApiTools) {
if (!toolMeta) continue;
if (toolMeta.toolId === name || toolMeta.tool_id === name) {
name = toolMeta.toolName || toolMeta.tool_name || name;
break;
}
}
}
}
logger.debug(`Invoke tool ${name} with arguments`, args);
const result = await apiset.invoke(name, args, config);
logger.debug(`Invoke tool ${name} got result`, result);
return result;
};
/**
* Call tool (sync wrapper)
* 同步调用工具,统一使用 ApiSet 实现
*/
callTool = (name: string, args?: Record<string, unknown>, config?: Config): Promise<any> => {
return this.callToolAsync(name, args, config);
};
/**
* Convert ToolSet to unified ApiSet object
* 将 ToolSet 转换为统一的 ApiSet 对象
*/
toApiSet = async (params?: { config?: Config }): Promise<any> => {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ApiSet } = require('./openapi');
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ToolSetSchemaType } = require('./model');
if (this.type() === ToolSetSchemaType.MCP) {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { MCPToolSet } = require('./api/mcp');
const mcpServerConfig = (this.status?.outputs as any)?.mcpServerConfig;
if (!mcpServerConfig?.url) {
throw new Error('MCP server URL is missing.');
}
const cfg = Config.withConfigs(
params?.config,
new Config({ headers: mcpServerConfig.headers })
);
const mcpClient = new MCPToolSet(mcpServerConfig.url, cfg);
// Get MCP tools
const mcpTools = this.status?.outputs?.tools || [];
return ApiSet.fromMCPTools({
tools: mcpTools,
mcpClient,
config: cfg,
});
} else if (this.type() === ToolSetSchemaType.OPENAPI) {
const headers = this._getOpenAPIAuthDefaults().headers;
const query = this._getOpenAPIAuthDefaults().query;
// Use OpenAPI.fromSchema if available, otherwise create basic ApiSet
// 如果可用,使用 OpenAPI.fromSchema,否则创建基本 ApiSet
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { OpenAPI } = require('./openapi');
const openapi = new OpenAPI({
schema: this.spec?.schema?.detail || '{}',
baseUrl: this._getOpenAPIBaseUrl(),
headers,
queryParams: query,
config: params?.config,
});
// Convert OpenAPI tools to ToolInfo format
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { ToolInfo } = require('./model');
const tools = openapi.tools.map(
(t: any) =>
new ToolInfo({
name: t.name,
description: t.description,
parameters: t.parameters as any,
})
);
return new ApiSet(tools, openapi, undefined, headers, query, params?.config);
}
throw new Error(`Unsupported ToolSet type: ${this.type()}`);
};
/**
* Get OpenAPI authentication defaults
* 获取 OpenAPI 认证默认值
*/
private _getOpenAPIAuthDefaults(): {
headers: Record<string, string>;
query: Record<string, string>;
} {
const headers: Record<string, string> = {};
const query: Record<string, string> = {};
const authConfig = this.spec?.authConfig;
const authType = authConfig?.type;
if (authType === 'APIKey') {
const key = authConfig?.apiKeyHeaderName;
const value = authConfig?.apiKeyValue;
const location = 'header'; // Default location
if (key && value) {
if (location === 'header') {
headers[key] = value;
} else if (location === 'query') {
query[key] = value;
}
}
}
return { headers, query };
}
/**
* Get OpenAPI base URL
* 获取 OpenAPI 基础 URL
*/
private _getOpenAPIBaseUrl(): string | undefined {
const outputs = this.status?.outputs as any;
return outputs?.urls?.internetUrl || outputs?.urls?.intranetUrl;
}
}