@inkeep/agents-sdk 0.14.9 → 0.14.11
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/index.cjs +2 -4
- package/dist/index.d.cts +3 -10
- package/dist/index.d.ts +3 -10
- package/dist/index.js +2 -4
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -3346,10 +3346,8 @@ function externalAgents(configs) {
|
|
|
3346
3346
|
}
|
|
3347
3347
|
return builders;
|
|
3348
3348
|
}
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
providerOptions: zod.z.record(zod.z.string(), zod.z.record(zod.z.string(), zod.z.unknown())).optional()
|
|
3352
|
-
});
|
|
3349
|
+
|
|
3350
|
+
// src/types.ts
|
|
3353
3351
|
var AgentError = class extends Error {
|
|
3354
3352
|
constructor(message, code, details) {
|
|
3355
3353
|
super(message);
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { MCPToolConfig as MCPToolConfig$1, ArtifactComponentInsert, CredentialReferenceApiInsert, DataComponentInsert, CredentialReferenceSelect, AgentApiInsert, AgentStopWhen, DataComponentApiInsert, ArtifactComponentApiInsert, AgentConversationHistoryConfig, GraphStopWhen, StatusUpdateSettings, FullGraphDefinition, ToolInsert, McpTransportConfig, StopWhen, FullProjectDefinition } from '@inkeep/agents-core';
|
|
1
|
+
import { MCPToolConfig as MCPToolConfig$1, ArtifactComponentInsert, CredentialReferenceApiInsert, DataComponentInsert, CredentialReferenceSelect, AgentApiInsert, ModelSettings, AgentStopWhen, DataComponentApiInsert, ArtifactComponentApiInsert, AgentConversationHistoryConfig, GraphStopWhen, StatusUpdateSettings, FullGraphDefinition, ToolInsert, McpTransportConfig, StopWhen, FullProjectDefinition } from '@inkeep/agents-core';
|
|
2
|
+
export { ModelSettings } from '@inkeep/agents-core';
|
|
2
3
|
import { z } from 'zod';
|
|
3
4
|
|
|
4
5
|
interface ToolInterface {
|
|
@@ -263,14 +264,6 @@ interface AgentConfig extends Omit<AgentApiInsert, 'projectId'> {
|
|
|
263
264
|
artifactComponents?: () => (ArtifactComponentApiInsert | ArtifactComponentInterface)[];
|
|
264
265
|
conversationHistoryConfig?: AgentConversationHistoryConfig;
|
|
265
266
|
}
|
|
266
|
-
interface ModelSettings {
|
|
267
|
-
model?: string;
|
|
268
|
-
providerOptions?: Record<string, Record<string, unknown>>;
|
|
269
|
-
}
|
|
270
|
-
declare const ModelSettingsSchema: z.ZodObject<{
|
|
271
|
-
model: z.ZodOptional<z.ZodString>;
|
|
272
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
273
|
-
}, z.core.$strip>;
|
|
274
267
|
interface ToolConfig extends ToolInsert {
|
|
275
268
|
execute: (params: any) => Promise<any>;
|
|
276
269
|
parameters?: Record<string, any>;
|
|
@@ -1195,4 +1188,4 @@ declare const run: typeof Runner.run;
|
|
|
1195
1188
|
declare const stream: typeof Runner.stream;
|
|
1196
1189
|
declare const raceGraphs: typeof Runner.raceGraphs;
|
|
1197
1190
|
|
|
1198
|
-
export { Agent, type AgentCanUseType, type AgentConfig, AgentError, type AgentInterface, type AgentResponse, type AgentTool, type AllAgentInterface, ArtifactComponent, type ArtifactComponentInterface, type AssistantMessage, type BuilderAgentConfig, type BuilderRelationConfig, type BuilderToolConfig, type CredentialReference, DataComponent, type DataComponentInterface, ExternalAgent, type ExternalAgentInterface, type ExtractCredentialIds, type FetchDefinitionConfig, type GenerateOptions, type GraphConfig, type GraphInterface, type MCPToolConfig, MaxTurnsExceededError, type Message, type MessageInput,
|
|
1191
|
+
export { Agent, type AgentCanUseType, type AgentConfig, AgentError, type AgentInterface, type AgentResponse, type AgentTool, type AllAgentInterface, ArtifactComponent, type ArtifactComponentInterface, type AssistantMessage, type BuilderAgentConfig, type BuilderRelationConfig, type BuilderToolConfig, type CredentialReference, DataComponent, type DataComponentInterface, ExternalAgent, type ExternalAgentInterface, type ExtractCredentialIds, type FetchDefinitionConfig, type GenerateOptions, type GraphConfig, type GraphInterface, type MCPToolConfig, MaxTurnsExceededError, type Message, type MessageInput, Project, type RequestSchemaConfig, type RequestSchemaDefinition, type RunResult, Runner, type ServerConfig, type StreamEvent, type StreamResponse, type SystemMessage, Tool, type ToolCall, type ToolConfig, ToolExecutionError, type ToolMessage, type ToolResult, type TransferConfig, TransferError, type UnionCredentialIds, type UserMessage, agent, agentGraph, agentMcp, artifactComponent, createEnvironmentSettings, createFullProjectViaAPI, credential, credentialRef, dataComponent, deleteFullProjectViaAPI, externalAgent, externalAgents, getFullProjectViaAPI, isCredentialReference, mcpServer, mcpTool, project, raceGraphs, registerEnvironmentSettings, run, stream, transfer, updateFullProjectViaAPI };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { MCPToolConfig as MCPToolConfig$1, ArtifactComponentInsert, CredentialReferenceApiInsert, DataComponentInsert, CredentialReferenceSelect, AgentApiInsert, AgentStopWhen, DataComponentApiInsert, ArtifactComponentApiInsert, AgentConversationHistoryConfig, GraphStopWhen, StatusUpdateSettings, FullGraphDefinition, ToolInsert, McpTransportConfig, StopWhen, FullProjectDefinition } from '@inkeep/agents-core';
|
|
1
|
+
import { MCPToolConfig as MCPToolConfig$1, ArtifactComponentInsert, CredentialReferenceApiInsert, DataComponentInsert, CredentialReferenceSelect, AgentApiInsert, ModelSettings, AgentStopWhen, DataComponentApiInsert, ArtifactComponentApiInsert, AgentConversationHistoryConfig, GraphStopWhen, StatusUpdateSettings, FullGraphDefinition, ToolInsert, McpTransportConfig, StopWhen, FullProjectDefinition } from '@inkeep/agents-core';
|
|
2
|
+
export { ModelSettings } from '@inkeep/agents-core';
|
|
2
3
|
import { z } from 'zod';
|
|
3
4
|
|
|
4
5
|
interface ToolInterface {
|
|
@@ -263,14 +264,6 @@ interface AgentConfig extends Omit<AgentApiInsert, 'projectId'> {
|
|
|
263
264
|
artifactComponents?: () => (ArtifactComponentApiInsert | ArtifactComponentInterface)[];
|
|
264
265
|
conversationHistoryConfig?: AgentConversationHistoryConfig;
|
|
265
266
|
}
|
|
266
|
-
interface ModelSettings {
|
|
267
|
-
model?: string;
|
|
268
|
-
providerOptions?: Record<string, Record<string, unknown>>;
|
|
269
|
-
}
|
|
270
|
-
declare const ModelSettingsSchema: z.ZodObject<{
|
|
271
|
-
model: z.ZodOptional<z.ZodString>;
|
|
272
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
273
|
-
}, z.core.$strip>;
|
|
274
267
|
interface ToolConfig extends ToolInsert {
|
|
275
268
|
execute: (params: any) => Promise<any>;
|
|
276
269
|
parameters?: Record<string, any>;
|
|
@@ -1195,4 +1188,4 @@ declare const run: typeof Runner.run;
|
|
|
1195
1188
|
declare const stream: typeof Runner.stream;
|
|
1196
1189
|
declare const raceGraphs: typeof Runner.raceGraphs;
|
|
1197
1190
|
|
|
1198
|
-
export { Agent, type AgentCanUseType, type AgentConfig, AgentError, type AgentInterface, type AgentResponse, type AgentTool, type AllAgentInterface, ArtifactComponent, type ArtifactComponentInterface, type AssistantMessage, type BuilderAgentConfig, type BuilderRelationConfig, type BuilderToolConfig, type CredentialReference, DataComponent, type DataComponentInterface, ExternalAgent, type ExternalAgentInterface, type ExtractCredentialIds, type FetchDefinitionConfig, type GenerateOptions, type GraphConfig, type GraphInterface, type MCPToolConfig, MaxTurnsExceededError, type Message, type MessageInput,
|
|
1191
|
+
export { Agent, type AgentCanUseType, type AgentConfig, AgentError, type AgentInterface, type AgentResponse, type AgentTool, type AllAgentInterface, ArtifactComponent, type ArtifactComponentInterface, type AssistantMessage, type BuilderAgentConfig, type BuilderRelationConfig, type BuilderToolConfig, type CredentialReference, DataComponent, type DataComponentInterface, ExternalAgent, type ExternalAgentInterface, type ExtractCredentialIds, type FetchDefinitionConfig, type GenerateOptions, type GraphConfig, type GraphInterface, type MCPToolConfig, MaxTurnsExceededError, type Message, type MessageInput, Project, type RequestSchemaConfig, type RequestSchemaDefinition, type RunResult, Runner, type ServerConfig, type StreamEvent, type StreamResponse, type SystemMessage, Tool, type ToolCall, type ToolConfig, ToolExecutionError, type ToolMessage, type ToolResult, type TransferConfig, TransferError, type UnionCredentialIds, type UserMessage, agent, agentGraph, agentMcp, artifactComponent, createEnvironmentSettings, createFullProjectViaAPI, credential, credentialRef, dataComponent, deleteFullProjectViaAPI, externalAgent, externalAgents, getFullProjectViaAPI, isCredentialReference, mcpServer, mcpTool, project, raceGraphs, registerEnvironmentSettings, run, stream, transfer, updateFullProjectViaAPI };
|
package/dist/index.js
CHANGED
|
@@ -3344,10 +3344,8 @@ function externalAgents(configs) {
|
|
|
3344
3344
|
}
|
|
3345
3345
|
return builders;
|
|
3346
3346
|
}
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
providerOptions: z.record(z.string(), z.record(z.string(), z.unknown())).optional()
|
|
3350
|
-
});
|
|
3347
|
+
|
|
3348
|
+
// src/types.ts
|
|
3351
3349
|
var AgentError = class extends Error {
|
|
3352
3350
|
constructor(message, code, details) {
|
|
3353
3351
|
super(message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-sdk",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.11",
|
|
4
4
|
"description": "Agents SDK for building and managing agents in the Inkeep Agent Framework",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"nanoid": "^5.1.5",
|
|
10
10
|
"zod": "^4.1.11",
|
|
11
|
-
"@inkeep/agents-core": "^0.14.
|
|
11
|
+
"@inkeep/agents-core": "^0.14.11"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^20.11.24",
|