@inkeep/agents-core 0.19.8 → 0.20.0
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/client-exports.cjs
CHANGED
|
@@ -2214,7 +2214,7 @@ var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
|
|
|
2214
2214
|
stopWhen: zod.z.object({
|
|
2215
2215
|
transferCountIs: zod.z.number().min(1).max(100).optional()
|
|
2216
2216
|
}).optional(),
|
|
2217
|
-
|
|
2217
|
+
prompt: zod.z.string().max(5e3).optional(),
|
|
2218
2218
|
statusUpdates: zod.z.object({
|
|
2219
2219
|
enabled: zod.z.boolean().optional(),
|
|
2220
2220
|
numEvents: zod.z.number().min(1).max(100).optional(),
|
|
@@ -238,7 +238,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
238
238
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
239
239
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
240
240
|
}, z.core.$strip>>;
|
|
241
|
-
|
|
241
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
242
242
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
243
243
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
244
244
|
numEvents: z.ZodOptional<z.ZodNumber>;
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -238,7 +238,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
238
238
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
239
239
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
240
240
|
}, z.core.$strip>>;
|
|
241
|
-
|
|
241
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
242
242
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
243
243
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
244
244
|
numEvents: z.ZodOptional<z.ZodNumber>;
|
package/dist/client-exports.js
CHANGED
|
@@ -144,7 +144,7 @@ var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
|
|
|
144
144
|
stopWhen: z.object({
|
|
145
145
|
transferCountIs: z.number().min(1).max(100).optional()
|
|
146
146
|
}).optional(),
|
|
147
|
-
|
|
147
|
+
prompt: z.string().max(5e3).optional(),
|
|
148
148
|
statusUpdates: z.object({
|
|
149
149
|
enabled: z.boolean().optional(),
|
|
150
150
|
numEvents: z.number().min(1).max(100).optional(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|