@ideascol/agents-generator-sdk 0.0.8 → 0.0.9
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/dist/bin/cli.js +15 -0
- package/dist/index.js +15 -0
- package/dist/lib/clients/agents-generator/models/FileResponse.d.ts +1 -0
- package/dist/lib/clients/agents-generator/models/NodeData.d.ts +8 -0
- package/dist/lib/clients/agents-generator/services/AgentService.d.ts +10 -0
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -939,6 +939,21 @@ class AgentService {
|
|
|
939
939
|
}
|
|
940
940
|
});
|
|
941
941
|
}
|
|
942
|
+
static getAgentStructureAgentsAgentIdStructureGet(agentId, userId) {
|
|
943
|
+
return request(OpenAPI, {
|
|
944
|
+
method: "GET",
|
|
945
|
+
url: "/agents/{agent_id}/structure",
|
|
946
|
+
path: {
|
|
947
|
+
agent_id: agentId
|
|
948
|
+
},
|
|
949
|
+
query: {
|
|
950
|
+
user_id: userId
|
|
951
|
+
},
|
|
952
|
+
errors: {
|
|
953
|
+
422: `Validation Error`
|
|
954
|
+
}
|
|
955
|
+
});
|
|
956
|
+
}
|
|
942
957
|
static visualizeAgentAgentsAgentIdVisualizeGet(agentId, userId, format = "png") {
|
|
943
958
|
return request(OpenAPI, {
|
|
944
959
|
method: "GET",
|
package/dist/index.js
CHANGED
|
@@ -507,6 +507,21 @@ class AgentService {
|
|
|
507
507
|
}
|
|
508
508
|
});
|
|
509
509
|
}
|
|
510
|
+
static getAgentStructureAgentsAgentIdStructureGet(agentId, userId) {
|
|
511
|
+
return request(OpenAPI, {
|
|
512
|
+
method: "GET",
|
|
513
|
+
url: "/agents/{agent_id}/structure",
|
|
514
|
+
path: {
|
|
515
|
+
agent_id: agentId
|
|
516
|
+
},
|
|
517
|
+
query: {
|
|
518
|
+
user_id: userId
|
|
519
|
+
},
|
|
520
|
+
errors: {
|
|
521
|
+
422: `Validation Error`
|
|
522
|
+
}
|
|
523
|
+
});
|
|
524
|
+
}
|
|
510
525
|
static visualizeAgentAgentsAgentIdVisualizeGet(agentId, userId, format = "png") {
|
|
511
526
|
return request(OpenAPI, {
|
|
512
527
|
method: "GET",
|
|
@@ -8,4 +8,12 @@ export type NodeData = {
|
|
|
8
8
|
* List of MCP servers associated with this node
|
|
9
9
|
*/
|
|
10
10
|
mcp_servers?: Array<MCPServerReference>;
|
|
11
|
+
/**
|
|
12
|
+
* List of selected folders for file search tools
|
|
13
|
+
*/
|
|
14
|
+
selectedFolders?: null;
|
|
15
|
+
/**
|
|
16
|
+
* Configuration for web search tool
|
|
17
|
+
*/
|
|
18
|
+
webSearchConfig?: (Record<string, any> | null);
|
|
11
19
|
};
|
|
@@ -62,6 +62,16 @@ export declare class AgentService {
|
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
64
|
static queryAgentAgentsAgentIdQueryPost(agentId: string, requestBody: AgentQueryRequest, userId?: string, conversationId?: (string | null)): CancelablePromise<AgentQueryResponse>;
|
|
65
|
+
/**
|
|
66
|
+
* Get Agent Structure
|
|
67
|
+
* Get detailed agent structure and tools information using openai-agents visualization.
|
|
68
|
+
* Returns information about the agent's graph structure, nodes, edges, and tools used.
|
|
69
|
+
* @param agentId
|
|
70
|
+
* @param userId
|
|
71
|
+
* @returns any Successful Response
|
|
72
|
+
* @throws ApiError
|
|
73
|
+
*/
|
|
74
|
+
static getAgentStructureAgentsAgentIdStructureGet(agentId: string, userId?: string): CancelablePromise<Record<string, any>>;
|
|
65
75
|
/**
|
|
66
76
|
* Visualize Agent
|
|
67
77
|
* @param agentId
|