@inkeep/agents-sdk 0.0.0-dev-20260123205017 → 0.0.0-dev-20260123212735
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/agent.js +2 -2
- package/dist/project.js +2 -2
- package/package.json +2 -2
package/dist/agent.js
CHANGED
|
@@ -58,7 +58,7 @@ var Agent = class {
|
|
|
58
58
|
agentCount: this.subAgents.length,
|
|
59
59
|
defaultSubAgent: this.defaultSubAgent?.getName(),
|
|
60
60
|
triggerCount: this.triggers.length
|
|
61
|
-
}, "Agent
|
|
61
|
+
}, "Agent initialized");
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* Set or update the configuration (tenantId, projectId and apiUrl)
|
|
@@ -82,7 +82,7 @@ var Agent = class {
|
|
|
82
82
|
tenantId: this.tenantId,
|
|
83
83
|
projectId: this.projectId,
|
|
84
84
|
apiUrl: this.baseURL
|
|
85
|
-
}, "Agent
|
|
85
|
+
}, "Agent configured");
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* Convert the Agent to FullAgentDefinition format for the new agent endpoint
|
package/dist/project.js
CHANGED
|
@@ -74,7 +74,7 @@ var Project = class {
|
|
|
74
74
|
projectId: this.projectId,
|
|
75
75
|
tenantId: this.tenantId,
|
|
76
76
|
agentCount: this.agents.length
|
|
77
|
-
}, "Project
|
|
77
|
+
}, "Project loaded");
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* Set or update the configuration (tenantId and apiUrl)
|
|
@@ -93,7 +93,7 @@ var Project = class {
|
|
|
93
93
|
apiUrl: this.baseURL,
|
|
94
94
|
hasModels: !!this.models,
|
|
95
95
|
hasApiKey: !!this.apiKey
|
|
96
|
-
}, "Project
|
|
96
|
+
}, "Project configured");
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
99
99
|
* Set credential references for the project
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-sdk",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260123212735",
|
|
4
4
|
"description": "Agents SDK for building and managing agents in the Inkeep Agent Framework",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"js-yaml": "^4.1.0",
|
|
17
17
|
"typescript": "^5.3.3",
|
|
18
18
|
"zod": "^4.1.11",
|
|
19
|
-
"@inkeep/agents-core": "^0.0.0-dev-
|
|
19
|
+
"@inkeep/agents-core": "^0.0.0-dev-20260123212735"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/js-yaml": "^4.0.9",
|