@base44-preview/cli 0.1.1-pr.557.14ada15 → 0.1.1-pr.558.0e44048
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.
|
@@ -7,13 +7,5 @@
|
|
|
7
7
|
"entity_name": "Task",
|
|
8
8
|
"allowed_operations": ["read", "create", "update", "delete"]
|
|
9
9
|
}
|
|
10
|
-
]
|
|
11
|
-
// Optional: let the agent remember facts across conversations.
|
|
12
|
-
// scope: "user" (per end-user), "global" (shared), or "both".
|
|
13
|
-
"memory_config": {
|
|
14
|
-
"enabled": true,
|
|
15
|
-
"scope": "both",
|
|
16
|
-
"include_other_conversation_context": false,
|
|
17
|
-
"instructions": null
|
|
18
|
-
}
|
|
10
|
+
]
|
|
19
11
|
}
|
package/dist/cli/index.js
CHANGED
|
@@ -241946,18 +241946,11 @@ var ToolConfigSchema = exports_external.union([
|
|
|
241946
241946
|
EntityToolConfigSchema,
|
|
241947
241947
|
BackendFunctionToolConfigSchema
|
|
241948
241948
|
]);
|
|
241949
|
-
var MemoryConfigSchema = exports_external.object({
|
|
241950
|
-
enabled: exports_external.boolean().default(true),
|
|
241951
|
-
scope: exports_external.enum(["global", "user", "both"]).default("both"),
|
|
241952
|
-
include_other_conversation_context: exports_external.boolean().default(false),
|
|
241953
|
-
instructions: exports_external.string().nullable().optional()
|
|
241954
|
-
});
|
|
241955
241949
|
var AgentConfigSchema = exports_external.looseObject({
|
|
241956
241950
|
name: exports_external.string().trim().min(1).max(100),
|
|
241957
241951
|
description: exports_external.string().trim().min(1, "Description is required"),
|
|
241958
241952
|
instructions: exports_external.string().trim().min(1, "Instructions are required"),
|
|
241959
241953
|
tool_configs: exports_external.array(ToolConfigSchema).optional().default([]),
|
|
241960
|
-
memory_config: MemoryConfigSchema.optional(),
|
|
241961
241954
|
whatsapp_greeting: exports_external.string().nullable().optional()
|
|
241962
241955
|
});
|
|
241963
241956
|
var SyncAgentsResponseSchema = exports_external.object({
|
|
@@ -262531,4 +262524,4 @@ export {
|
|
|
262531
262524
|
CLIExitError
|
|
262532
262525
|
};
|
|
262533
262526
|
|
|
262534
|
-
//# debugId=
|
|
262527
|
+
//# debugId=5AE819ADC89BA80F64756E2164756E21
|