@little-samo/samo-ai-sdk 0.3.2 → 0.4.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/dto/entities/agents/agent.requests.d.ts +60 -32
- package/dist/dto/entities/gimmicks/gimmick.config.d.ts +2 -3
- package/dist/dto/entities/gimmicks/gimmick.config.js +1 -2
- package/dist/dto/entities/gimmicks/gimmick.config.js.map +1 -1
- package/dist/dto/entities/users/user.d.ts +8 -0
- package/dist/dto/entities/users/user.requests.d.ts +42 -5
- package/dist/dto/entities/users/user.requests.js +12 -1
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/images/image.requests.d.ts +17 -0
- package/dist/dto/images/image.requests.js +9 -0
- package/dist/dto/images/image.requests.js.map +1 -0
- package/dist/dto/images/index.d.ts +1 -0
- package/dist/dto/images/index.js +18 -0
- package/dist/dto/images/index.js.map +1 -0
- package/dist/dto/index.d.ts +1 -0
- package/dist/dto/index.js +1 -0
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/locations/location.preset.d.ts +7 -3
- package/dist/dto/locations/location.preset.js.map +1 -1
- package/dist/dto/locations/location.requests.d.ts +867 -172
- package/dist/dto/locations/location.requests.js +12 -6
- package/dist/dto/locations/location.requests.js.map +1 -1
- package/dist/dto/upload/upload.requests.d.ts +8 -2
- package/dist/dto/upload/upload.requests.js +7 -1
- package/dist/dto/upload/upload.requests.js.map +1 -1
- package/dist/models/entities/agents/agent.config.d.ts +25 -9
- package/dist/models/entities/agents/agent.config.js +56 -50
- package/dist/models/entities/agents/agent.config.js.map +1 -1
- package/dist/models/locations/location.config.d.ts +10 -10
- package/dist/models/locations/location.config.js +30 -39
- package/dist/models/locations/location.config.js.map +1 -1
- package/package.json +3 -3
|
@@ -46,7 +46,7 @@ export declare const LocationConfigGimmickImageSchema: z.ZodObject<{
|
|
|
46
46
|
}>;
|
|
47
47
|
export type LocationConfigGimmickImage = z.infer<typeof LocationConfigGimmickImageSchema>;
|
|
48
48
|
export declare const LocationConfigGimmickSchema: z.ZodObject<{
|
|
49
|
-
core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "
|
|
49
|
+
core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
|
|
50
50
|
name: z.ZodString;
|
|
51
51
|
appearance: z.ZodString;
|
|
52
52
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -64,8 +64,8 @@ export declare const LocationConfigGimmickSchema: z.ZodObject<{
|
|
|
64
64
|
}>, "many">>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
66
|
name: string;
|
|
67
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "scene_image_generator" | "notion";
|
|
68
67
|
appearance: string;
|
|
68
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
69
69
|
images?: {
|
|
70
70
|
description: string;
|
|
71
71
|
name?: string | undefined;
|
|
@@ -73,8 +73,8 @@ export declare const LocationConfigGimmickSchema: z.ZodObject<{
|
|
|
73
73
|
}[] | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
name: string;
|
|
76
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "scene_image_generator" | "notion";
|
|
77
76
|
appearance: string;
|
|
77
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
78
78
|
images?: {
|
|
79
79
|
description: string;
|
|
80
80
|
name?: string | undefined;
|
|
@@ -131,7 +131,7 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
131
131
|
maxLength: number;
|
|
132
132
|
}>, "many">;
|
|
133
133
|
gimmicks: z.ZodArray<z.ZodObject<{
|
|
134
|
-
core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "
|
|
134
|
+
core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
|
|
135
135
|
name: z.ZodString;
|
|
136
136
|
appearance: z.ZodString;
|
|
137
137
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -149,8 +149,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
149
149
|
}>, "many">>;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
151
|
name: string;
|
|
152
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "scene_image_generator" | "notion";
|
|
153
152
|
appearance: string;
|
|
153
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
154
154
|
images?: {
|
|
155
155
|
description: string;
|
|
156
156
|
name?: string | undefined;
|
|
@@ -158,8 +158,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
158
158
|
}[] | undefined;
|
|
159
159
|
}, {
|
|
160
160
|
name: string;
|
|
161
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "scene_image_generator" | "notion";
|
|
162
161
|
appearance: string;
|
|
162
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
163
163
|
images?: {
|
|
164
164
|
description: string;
|
|
165
165
|
name?: string | undefined;
|
|
@@ -175,9 +175,9 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
175
175
|
interval?: number | undefined;
|
|
176
176
|
maxAgentExecutions?: number | null | undefined;
|
|
177
177
|
};
|
|
178
|
+
rules: string[];
|
|
178
179
|
thumbnail: string | null;
|
|
179
180
|
environment: "CHAT" | "NOVEL";
|
|
180
|
-
rules: string[];
|
|
181
181
|
canvases: {
|
|
182
182
|
name: string;
|
|
183
183
|
description: string;
|
|
@@ -190,8 +190,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
190
190
|
}[];
|
|
191
191
|
gimmicks: {
|
|
192
192
|
name: string;
|
|
193
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "scene_image_generator" | "notion";
|
|
194
193
|
appearance: string;
|
|
194
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
195
195
|
images?: {
|
|
196
196
|
description: string;
|
|
197
197
|
name?: string | undefined;
|
|
@@ -207,9 +207,9 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
207
207
|
interval?: number | undefined;
|
|
208
208
|
maxAgentExecutions?: number | null | undefined;
|
|
209
209
|
};
|
|
210
|
+
rules: string[];
|
|
210
211
|
thumbnail: string | null;
|
|
211
212
|
environment: "CHAT" | "NOVEL";
|
|
212
|
-
rules: string[];
|
|
213
213
|
canvases: {
|
|
214
214
|
name: string;
|
|
215
215
|
description: string;
|
|
@@ -222,8 +222,8 @@ export declare const LocationConfigSchema: z.ZodObject<{
|
|
|
222
222
|
}[];
|
|
223
223
|
gimmicks: {
|
|
224
224
|
name: string;
|
|
225
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "scene_image_generator" | "notion";
|
|
226
225
|
appearance: string;
|
|
226
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
227
227
|
images?: {
|
|
228
228
|
description: string;
|
|
229
229
|
name?: string | undefined;
|
|
@@ -7,52 +7,50 @@ const location_constants_1 = require("./location.constants");
|
|
|
7
7
|
exports.LocationEnvironmentSchema = zod_1.z.union([
|
|
8
8
|
zod_1.z
|
|
9
9
|
.literal(location_constants_1.LocationEnvironment.CHAT)
|
|
10
|
-
.describe('Standard
|
|
10
|
+
.describe('Standard chat environment for general conversations'),
|
|
11
11
|
zod_1.z
|
|
12
12
|
.literal(location_constants_1.LocationEnvironment.NOVEL)
|
|
13
|
-
.describe('Novel environment with UI
|
|
13
|
+
.describe('Novel writing environment with specialized UI'),
|
|
14
14
|
]);
|
|
15
15
|
exports.LocationConfigCoreSchema = zod_1.z.object({
|
|
16
16
|
name: zod_1.z.union([
|
|
17
|
-
zod_1.z.literal('round_robin').describe('
|
|
18
|
-
zod_1.z
|
|
19
|
-
|
|
20
|
-
.describe('Continuously update agents without stopping'),
|
|
21
|
-
zod_1.z.literal('update_once').describe('Execute agents only once per cycle'),
|
|
17
|
+
zod_1.z.literal('round_robin').describe('Agents take turns in rotation'),
|
|
18
|
+
zod_1.z.literal('update_forever').describe('Agents update continuously'),
|
|
19
|
+
zod_1.z.literal('update_once').describe('Agents execute once per cycle'),
|
|
22
20
|
zod_1.z
|
|
23
21
|
.literal('update_until_idle')
|
|
24
|
-
.describe('
|
|
22
|
+
.describe('Agents update until no more actions'),
|
|
25
23
|
]),
|
|
26
|
-
sequential: zod_1.z.boolean().optional().describe('Execute
|
|
24
|
+
sequential: zod_1.z.boolean().optional().describe('Execute in fixed order'),
|
|
27
25
|
interval: zod_1.z
|
|
28
26
|
.number()
|
|
29
27
|
.min(0)
|
|
30
28
|
.max(60 * 60 * 1000)
|
|
31
29
|
.optional()
|
|
32
|
-
.describe('
|
|
30
|
+
.describe('Milliseconds between agent executions. Uses default if unspecified'),
|
|
33
31
|
maxAgentExecutions: zod_1.z
|
|
34
32
|
.number()
|
|
35
33
|
.min(1)
|
|
36
34
|
.max(10)
|
|
37
35
|
.nullable()
|
|
38
36
|
.optional()
|
|
39
|
-
.describe('
|
|
37
|
+
.describe('Max agent executions per cycle'),
|
|
40
38
|
});
|
|
41
39
|
exports.LocationConfigCanvasSchema = zod_1.z.object({
|
|
42
40
|
name: zod_1.z
|
|
43
41
|
.string()
|
|
44
42
|
.max(32)
|
|
45
43
|
.regex(/^[a-zA-Z_]+$/, 'Name must contain only letters and underscores')
|
|
46
|
-
.describe('Unique identifier
|
|
44
|
+
.describe('Unique identifier agents use to reference this canvas'),
|
|
47
45
|
description: zod_1.z
|
|
48
46
|
.string()
|
|
49
47
|
.max(1000)
|
|
50
|
-
.describe('
|
|
48
|
+
.describe('Purpose and usage guide for agents'),
|
|
51
49
|
maxLength: zod_1.z
|
|
52
50
|
.number()
|
|
53
51
|
.min(100)
|
|
54
52
|
.max(5000)
|
|
55
|
-
.describe('
|
|
53
|
+
.describe('Character limit for canvas content'),
|
|
56
54
|
});
|
|
57
55
|
exports.LocationConfigGimmickImageSchema = zod_1.z.object({
|
|
58
56
|
url: zod_1.z.union([
|
|
@@ -61,34 +59,27 @@ exports.LocationConfigGimmickImageSchema = zod_1.z.object({
|
|
|
61
59
|
.max(2048)
|
|
62
60
|
.regex(/^https?:\/\/.+/)
|
|
63
61
|
.optional()
|
|
64
|
-
.describe('
|
|
65
|
-
zod_1.z.string().max(32).describe('
|
|
62
|
+
.describe('Official CDN URL (webp only)'),
|
|
63
|
+
zod_1.z.string().max(32).describe('Location message image key'),
|
|
66
64
|
]),
|
|
67
|
-
name: zod_1.z
|
|
68
|
-
.string()
|
|
69
|
-
.max(64)
|
|
70
|
-
.optional()
|
|
71
|
-
.describe('Optional name identifying this reference image'),
|
|
65
|
+
name: zod_1.z.string().max(64).optional().describe('Name for this reference image'),
|
|
72
66
|
description: zod_1.z
|
|
73
67
|
.string()
|
|
74
68
|
.max(500)
|
|
75
|
-
.describe('Stable Diffusion
|
|
69
|
+
.describe('Stable Diffusion prompt describing the image'),
|
|
76
70
|
});
|
|
77
71
|
exports.LocationConfigGimmickSchema = zod_1.z.object({
|
|
78
|
-
core: gimmicks_1.GimmickCoreSchema.describe('
|
|
79
|
-
name: zod_1.z
|
|
80
|
-
.string()
|
|
81
|
-
.max(64)
|
|
82
|
-
.describe('Gimmick display name for identification purposes'),
|
|
72
|
+
core: gimmicks_1.GimmickCoreSchema.describe('Gimmick type determining behavior'),
|
|
73
|
+
name: zod_1.z.string().max(64).describe('Display name'),
|
|
83
74
|
appearance: zod_1.z
|
|
84
75
|
.string()
|
|
85
76
|
.max(500)
|
|
86
|
-
.describe('
|
|
77
|
+
.describe('For character_image_generator: base appearance prompt. For others: how it appears in the location'),
|
|
87
78
|
images: zod_1.z
|
|
88
79
|
.array(exports.LocationConfigGimmickImageSchema)
|
|
89
80
|
.max(6)
|
|
90
81
|
.optional()
|
|
91
|
-
.describe('Reference images for
|
|
82
|
+
.describe('Reference images for image_generator and character_image_generator'),
|
|
92
83
|
});
|
|
93
84
|
exports.LocationConfigSchema = zod_1.z.object({
|
|
94
85
|
name: zod_1.z.string().max(64).describe('Location name'),
|
|
@@ -98,32 +89,32 @@ exports.LocationConfigSchema = zod_1.z.object({
|
|
|
98
89
|
.string()
|
|
99
90
|
.max(2048)
|
|
100
91
|
.regex(/^https?:\/\/.+/)
|
|
101
|
-
.describe('
|
|
102
|
-
zod_1.z.string().max(32).describe('Location message image key
|
|
92
|
+
.describe('Official CDN URL (webp only)'),
|
|
93
|
+
zod_1.z.string().max(32).describe('Location message image key'),
|
|
103
94
|
])
|
|
104
95
|
.nullable()
|
|
105
|
-
.describe('Location thumbnail
|
|
106
|
-
environment: exports.LocationEnvironmentSchema.describe('
|
|
107
|
-
core: exports.LocationConfigCoreSchema.describe('
|
|
96
|
+
.describe('Location thumbnail. Supports CDN URLs and image keys'),
|
|
97
|
+
environment: exports.LocationEnvironmentSchema.describe('Environment determining context and behavior'),
|
|
98
|
+
core: exports.LocationConfigCoreSchema.describe('Agent execution behavior. Use defaults unless needed'),
|
|
108
99
|
description: zod_1.z
|
|
109
100
|
.string()
|
|
110
101
|
.max(1000)
|
|
111
|
-
.describe('
|
|
102
|
+
.describe('Location description providing context to agents'),
|
|
112
103
|
rules: zod_1.z
|
|
113
104
|
.array(zod_1.z.string().max(200))
|
|
114
105
|
.max(20)
|
|
115
|
-
.describe('
|
|
106
|
+
.describe('Strict constraints all agents must enforce. Cannot be violated. Override agent preferences'),
|
|
116
107
|
canvases: zod_1.z
|
|
117
108
|
.array(exports.LocationConfigCanvasSchema)
|
|
118
109
|
.max(4)
|
|
119
|
-
.describe('Shared canvases
|
|
110
|
+
.describe('Shared canvases accessible to all entities'),
|
|
120
111
|
agentCanvases: zod_1.z
|
|
121
112
|
.array(exports.LocationConfigCanvasSchema)
|
|
122
113
|
.max(4)
|
|
123
|
-
.describe('Private
|
|
114
|
+
.describe('Private canvases for individual agents'),
|
|
124
115
|
gimmicks: zod_1.z
|
|
125
116
|
.array(exports.LocationConfigGimmickSchema)
|
|
126
117
|
.max(4)
|
|
127
|
-
.describe('
|
|
118
|
+
.describe('Tools agents can execute (e.g., web search, social media)'),
|
|
128
119
|
});
|
|
129
120
|
//# sourceMappingURL=location.config.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.config.js","sourceRoot":"","sources":["../../../src/models/locations/location.config.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,0DAAgE;AAEhE,6DAA2D;AAE9C,QAAA,yBAAyB,GAAG,OAAC,CAAC,KAAK,CAAC;IAC/C,OAAC;SACE,OAAO,CAAC,wCAAmB,CAAC,IAAI,CAAC;SACjC,QAAQ,
|
|
1
|
+
{"version":3,"file":"location.config.js","sourceRoot":"","sources":["../../../src/models/locations/location.config.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@little-samo/samo-ai-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "SamoAI SDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@eslint/eslintrc": "^3.1.0",
|
|
64
64
|
"@eslint/js": "^9.13.0",
|
|
65
|
-
"@little-samo/samo-ai": "^0.
|
|
65
|
+
"@little-samo/samo-ai": "^0.4.0",
|
|
66
66
|
"@types/lodash": "^4",
|
|
67
67
|
"@types/node": "^20.3.1",
|
|
68
68
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"zod": "^3.24.1"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
|
-
"@little-samo/samo-ai": "^0.
|
|
87
|
+
"@little-samo/samo-ai": "^0.4.0",
|
|
88
88
|
"class-transformer": "^0.5.1",
|
|
89
89
|
"class-validator": "^0.14.2",
|
|
90
90
|
"zod": "^3.24.1"
|