@little-samo/samo-ai-sdk 0.6.0 → 0.6.1
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 +56 -56
- package/dist/dto/locations/location.preset.d.ts +2 -2
- package/dist/dto/locations/location.requests.d.ts +104 -104
- package/dist/models/locations/location.config.d.ts +6 -6
- package/dist/models/locations/location.config.js +3 -0
- package/dist/models/locations/location.config.js.map +1 -1
- package/dist/models/locations/location.constants.d.ts +1 -0
- package/dist/models/locations/location.constants.js +1 -0
- package/dist/models/locations/location.constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -65,14 +65,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
65
65
|
backstory: z.ZodOptional<z.ZodString>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
67
|
gender?: string | undefined;
|
|
68
|
+
age?: string | undefined;
|
|
68
69
|
expertise?: string | undefined;
|
|
69
70
|
backstory?: string | undefined;
|
|
70
|
-
age?: string | undefined;
|
|
71
71
|
}, {
|
|
72
72
|
gender?: string | undefined;
|
|
73
|
+
age?: string | undefined;
|
|
73
74
|
expertise?: string | undefined;
|
|
74
75
|
backstory?: string | undefined;
|
|
75
|
-
age?: string | undefined;
|
|
76
76
|
}>>;
|
|
77
77
|
speech: z.ZodOptional<z.ZodObject<{
|
|
78
78
|
tone: z.ZodOptional<z.ZodString>;
|
|
@@ -95,16 +95,16 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
95
95
|
mbti: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"INTJ">, z.ZodLiteral<"INTP">, z.ZodLiteral<"ENTJ">, z.ZodLiteral<"ENTP">, z.ZodLiteral<"INFJ">, z.ZodLiteral<"INFP">, z.ZodLiteral<"ENFJ">, z.ZodLiteral<"ENFP">, z.ZodLiteral<"ISTJ">, z.ZodLiteral<"ISFJ">, z.ZodLiteral<"ESTJ">, z.ZodLiteral<"ESFJ">, z.ZodLiteral<"ISTP">, z.ZodLiteral<"ISFP">, z.ZodLiteral<"ESTP">, z.ZodLiteral<"ESFP">]>>;
|
|
96
96
|
zodiac: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Aries">, z.ZodLiteral<"Taurus">, z.ZodLiteral<"Gemini">, z.ZodLiteral<"Cancer">, z.ZodLiteral<"Leo">, z.ZodLiteral<"Virgo">, z.ZodLiteral<"Libra">, z.ZodLiteral<"Scorpio">, z.ZodLiteral<"Sagittarius">, z.ZodLiteral<"Capricorn">, z.ZodLiteral<"Aquarius">, z.ZodLiteral<"Pisces">]>>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
+
values?: string | undefined;
|
|
98
99
|
traits?: string | undefined;
|
|
99
100
|
interests?: string | undefined;
|
|
100
|
-
values?: string | undefined;
|
|
101
101
|
quirks?: string | undefined;
|
|
102
102
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
103
103
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
104
104
|
}, {
|
|
105
|
+
values?: string | undefined;
|
|
105
106
|
traits?: string | undefined;
|
|
106
107
|
interests?: string | undefined;
|
|
107
|
-
values?: string | undefined;
|
|
108
108
|
quirks?: string | undefined;
|
|
109
109
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
110
110
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -112,9 +112,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
|
113
113
|
background?: {
|
|
114
114
|
gender?: string | undefined;
|
|
115
|
+
age?: string | undefined;
|
|
115
116
|
expertise?: string | undefined;
|
|
116
117
|
backstory?: string | undefined;
|
|
117
|
-
age?: string | undefined;
|
|
118
118
|
} | undefined;
|
|
119
119
|
speech?: {
|
|
120
120
|
tone?: string | undefined;
|
|
@@ -122,9 +122,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
122
122
|
formality?: string | undefined;
|
|
123
123
|
} | undefined;
|
|
124
124
|
personality?: {
|
|
125
|
+
values?: string | undefined;
|
|
125
126
|
traits?: string | undefined;
|
|
126
127
|
interests?: string | undefined;
|
|
127
|
-
values?: string | undefined;
|
|
128
128
|
quirks?: string | undefined;
|
|
129
129
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
130
130
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -132,9 +132,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
132
132
|
}, {
|
|
133
133
|
background?: {
|
|
134
134
|
gender?: string | undefined;
|
|
135
|
+
age?: string | undefined;
|
|
135
136
|
expertise?: string | undefined;
|
|
136
137
|
backstory?: string | undefined;
|
|
137
|
-
age?: string | undefined;
|
|
138
138
|
} | undefined;
|
|
139
139
|
speech?: {
|
|
140
140
|
tone?: string | undefined;
|
|
@@ -142,9 +142,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
142
142
|
formality?: string | undefined;
|
|
143
143
|
} | undefined;
|
|
144
144
|
personality?: {
|
|
145
|
+
values?: string | undefined;
|
|
145
146
|
traits?: string | undefined;
|
|
146
147
|
interests?: string | undefined;
|
|
147
|
-
values?: string | undefined;
|
|
148
148
|
quirks?: string | undefined;
|
|
149
149
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
150
150
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -152,14 +152,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
152
152
|
}>>;
|
|
153
153
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
154
154
|
}, "strict", z.ZodTypeAny, {
|
|
155
|
-
role?: string | undefined;
|
|
156
|
-
avatar?: string | undefined;
|
|
157
155
|
name?: string | undefined;
|
|
158
156
|
core?: {
|
|
159
157
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
160
158
|
} | undefined;
|
|
161
|
-
rules?: string[] | undefined;
|
|
162
159
|
appearance?: string | undefined;
|
|
160
|
+
rules?: string[] | undefined;
|
|
161
|
+
role?: string | undefined;
|
|
162
|
+
avatar?: string | undefined;
|
|
163
163
|
referenceAvatar?: string | undefined;
|
|
164
164
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
165
165
|
languages?: string[] | undefined;
|
|
@@ -169,9 +169,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
169
169
|
character?: {
|
|
170
170
|
background?: {
|
|
171
171
|
gender?: string | undefined;
|
|
172
|
+
age?: string | undefined;
|
|
172
173
|
expertise?: string | undefined;
|
|
173
174
|
backstory?: string | undefined;
|
|
174
|
-
age?: string | undefined;
|
|
175
175
|
} | undefined;
|
|
176
176
|
speech?: {
|
|
177
177
|
tone?: string | undefined;
|
|
@@ -179,23 +179,23 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
179
179
|
formality?: string | undefined;
|
|
180
180
|
} | undefined;
|
|
181
181
|
personality?: {
|
|
182
|
+
values?: string | undefined;
|
|
182
183
|
traits?: string | undefined;
|
|
183
184
|
interests?: string | undefined;
|
|
184
|
-
values?: string | undefined;
|
|
185
185
|
quirks?: string | undefined;
|
|
186
186
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
187
187
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
188
188
|
} | undefined;
|
|
189
189
|
} | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
role?: string | undefined;
|
|
192
|
-
avatar?: string | undefined;
|
|
193
191
|
name?: string | undefined;
|
|
194
192
|
core?: {
|
|
195
193
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
196
194
|
} | undefined;
|
|
197
|
-
rules?: string[] | undefined;
|
|
198
195
|
appearance?: string | undefined;
|
|
196
|
+
rules?: string[] | undefined;
|
|
197
|
+
role?: string | undefined;
|
|
198
|
+
avatar?: string | undefined;
|
|
199
199
|
referenceAvatar?: string | undefined;
|
|
200
200
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
201
201
|
languages?: string[] | undefined;
|
|
@@ -205,9 +205,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
205
205
|
character?: {
|
|
206
206
|
background?: {
|
|
207
207
|
gender?: string | undefined;
|
|
208
|
+
age?: string | undefined;
|
|
208
209
|
expertise?: string | undefined;
|
|
209
210
|
backstory?: string | undefined;
|
|
210
|
-
age?: string | undefined;
|
|
211
211
|
} | undefined;
|
|
212
212
|
speech?: {
|
|
213
213
|
tone?: string | undefined;
|
|
@@ -215,9 +215,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
215
215
|
formality?: string | undefined;
|
|
216
216
|
} | undefined;
|
|
217
217
|
personality?: {
|
|
218
|
+
values?: string | undefined;
|
|
218
219
|
traits?: string | undefined;
|
|
219
220
|
interests?: string | undefined;
|
|
220
|
-
values?: string | undefined;
|
|
221
221
|
quirks?: string | undefined;
|
|
222
222
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
223
223
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -226,14 +226,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
226
226
|
}>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
config: {
|
|
229
|
-
role?: string | undefined;
|
|
230
|
-
avatar?: string | undefined;
|
|
231
229
|
name?: string | undefined;
|
|
232
230
|
core?: {
|
|
233
231
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
234
232
|
} | undefined;
|
|
235
|
-
rules?: string[] | undefined;
|
|
236
233
|
appearance?: string | undefined;
|
|
234
|
+
rules?: string[] | undefined;
|
|
235
|
+
role?: string | undefined;
|
|
236
|
+
avatar?: string | undefined;
|
|
237
237
|
referenceAvatar?: string | undefined;
|
|
238
238
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
239
239
|
languages?: string[] | undefined;
|
|
@@ -243,9 +243,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
243
243
|
character?: {
|
|
244
244
|
background?: {
|
|
245
245
|
gender?: string | undefined;
|
|
246
|
+
age?: string | undefined;
|
|
246
247
|
expertise?: string | undefined;
|
|
247
248
|
backstory?: string | undefined;
|
|
248
|
-
age?: string | undefined;
|
|
249
249
|
} | undefined;
|
|
250
250
|
speech?: {
|
|
251
251
|
tone?: string | undefined;
|
|
@@ -253,9 +253,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
253
253
|
formality?: string | undefined;
|
|
254
254
|
} | undefined;
|
|
255
255
|
personality?: {
|
|
256
|
+
values?: string | undefined;
|
|
256
257
|
traits?: string | undefined;
|
|
257
258
|
interests?: string | undefined;
|
|
258
|
-
values?: string | undefined;
|
|
259
259
|
quirks?: string | undefined;
|
|
260
260
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
261
261
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -265,14 +265,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
265
265
|
agentId: bigint;
|
|
266
266
|
}, {
|
|
267
267
|
config: {
|
|
268
|
-
role?: string | undefined;
|
|
269
|
-
avatar?: string | undefined;
|
|
270
268
|
name?: string | undefined;
|
|
271
269
|
core?: {
|
|
272
270
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
273
271
|
} | undefined;
|
|
274
|
-
rules?: string[] | undefined;
|
|
275
272
|
appearance?: string | undefined;
|
|
273
|
+
rules?: string[] | undefined;
|
|
274
|
+
role?: string | undefined;
|
|
275
|
+
avatar?: string | undefined;
|
|
276
276
|
referenceAvatar?: string | undefined;
|
|
277
277
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
278
278
|
languages?: string[] | undefined;
|
|
@@ -282,9 +282,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
282
282
|
character?: {
|
|
283
283
|
background?: {
|
|
284
284
|
gender?: string | undefined;
|
|
285
|
+
age?: string | undefined;
|
|
285
286
|
expertise?: string | undefined;
|
|
286
287
|
backstory?: string | undefined;
|
|
287
|
-
age?: string | undefined;
|
|
288
288
|
} | undefined;
|
|
289
289
|
speech?: {
|
|
290
290
|
tone?: string | undefined;
|
|
@@ -292,9 +292,9 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
292
292
|
formality?: string | undefined;
|
|
293
293
|
} | undefined;
|
|
294
294
|
personality?: {
|
|
295
|
+
values?: string | undefined;
|
|
295
296
|
traits?: string | undefined;
|
|
296
297
|
interests?: string | undefined;
|
|
297
|
-
values?: string | undefined;
|
|
298
298
|
quirks?: string | undefined;
|
|
299
299
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
300
300
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -412,14 +412,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
412
412
|
backstory: z.ZodOptional<z.ZodString>;
|
|
413
413
|
}, "strip", z.ZodTypeAny, {
|
|
414
414
|
gender?: string | undefined;
|
|
415
|
+
age?: string | undefined;
|
|
415
416
|
expertise?: string | undefined;
|
|
416
417
|
backstory?: string | undefined;
|
|
417
|
-
age?: string | undefined;
|
|
418
418
|
}, {
|
|
419
419
|
gender?: string | undefined;
|
|
420
|
+
age?: string | undefined;
|
|
420
421
|
expertise?: string | undefined;
|
|
421
422
|
backstory?: string | undefined;
|
|
422
|
-
age?: string | undefined;
|
|
423
423
|
}>>;
|
|
424
424
|
speech: z.ZodOptional<z.ZodObject<{
|
|
425
425
|
tone: z.ZodOptional<z.ZodString>;
|
|
@@ -442,16 +442,16 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
442
442
|
mbti: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"INTJ">, z.ZodLiteral<"INTP">, z.ZodLiteral<"ENTJ">, z.ZodLiteral<"ENTP">, z.ZodLiteral<"INFJ">, z.ZodLiteral<"INFP">, z.ZodLiteral<"ENFJ">, z.ZodLiteral<"ENFP">, z.ZodLiteral<"ISTJ">, z.ZodLiteral<"ISFJ">, z.ZodLiteral<"ESTJ">, z.ZodLiteral<"ESFJ">, z.ZodLiteral<"ISTP">, z.ZodLiteral<"ISFP">, z.ZodLiteral<"ESTP">, z.ZodLiteral<"ESFP">]>>;
|
|
443
443
|
zodiac: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Aries">, z.ZodLiteral<"Taurus">, z.ZodLiteral<"Gemini">, z.ZodLiteral<"Cancer">, z.ZodLiteral<"Leo">, z.ZodLiteral<"Virgo">, z.ZodLiteral<"Libra">, z.ZodLiteral<"Scorpio">, z.ZodLiteral<"Sagittarius">, z.ZodLiteral<"Capricorn">, z.ZodLiteral<"Aquarius">, z.ZodLiteral<"Pisces">]>>;
|
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
|
445
|
+
values?: string | undefined;
|
|
445
446
|
traits?: string | undefined;
|
|
446
447
|
interests?: string | undefined;
|
|
447
|
-
values?: string | undefined;
|
|
448
448
|
quirks?: string | undefined;
|
|
449
449
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
450
450
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
451
451
|
}, {
|
|
452
|
+
values?: string | undefined;
|
|
452
453
|
traits?: string | undefined;
|
|
453
454
|
interests?: string | undefined;
|
|
454
|
-
values?: string | undefined;
|
|
455
455
|
quirks?: string | undefined;
|
|
456
456
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
457
457
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -459,9 +459,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
459
459
|
}, "strip", z.ZodTypeAny, {
|
|
460
460
|
background?: {
|
|
461
461
|
gender?: string | undefined;
|
|
462
|
+
age?: string | undefined;
|
|
462
463
|
expertise?: string | undefined;
|
|
463
464
|
backstory?: string | undefined;
|
|
464
|
-
age?: string | undefined;
|
|
465
465
|
} | undefined;
|
|
466
466
|
speech?: {
|
|
467
467
|
tone?: string | undefined;
|
|
@@ -469,9 +469,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
469
469
|
formality?: string | undefined;
|
|
470
470
|
} | undefined;
|
|
471
471
|
personality?: {
|
|
472
|
+
values?: string | undefined;
|
|
472
473
|
traits?: string | undefined;
|
|
473
474
|
interests?: string | undefined;
|
|
474
|
-
values?: string | undefined;
|
|
475
475
|
quirks?: string | undefined;
|
|
476
476
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
477
477
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -479,9 +479,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
479
479
|
}, {
|
|
480
480
|
background?: {
|
|
481
481
|
gender?: string | undefined;
|
|
482
|
+
age?: string | undefined;
|
|
482
483
|
expertise?: string | undefined;
|
|
483
484
|
backstory?: string | undefined;
|
|
484
|
-
age?: string | undefined;
|
|
485
485
|
} | undefined;
|
|
486
486
|
speech?: {
|
|
487
487
|
tone?: string | undefined;
|
|
@@ -489,9 +489,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
489
489
|
formality?: string | undefined;
|
|
490
490
|
} | undefined;
|
|
491
491
|
personality?: {
|
|
492
|
+
values?: string | undefined;
|
|
492
493
|
traits?: string | undefined;
|
|
493
494
|
interests?: string | undefined;
|
|
494
|
-
values?: string | undefined;
|
|
495
495
|
quirks?: string | undefined;
|
|
496
496
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
497
497
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -499,14 +499,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
499
499
|
}>>;
|
|
500
500
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
501
501
|
}, "strict", z.ZodTypeAny, {
|
|
502
|
-
role?: string | undefined;
|
|
503
|
-
avatar?: string | undefined;
|
|
504
502
|
name?: string | undefined;
|
|
505
503
|
core?: {
|
|
506
504
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
507
505
|
} | undefined;
|
|
508
|
-
rules?: string[] | undefined;
|
|
509
506
|
appearance?: string | undefined;
|
|
507
|
+
rules?: string[] | undefined;
|
|
508
|
+
role?: string | undefined;
|
|
509
|
+
avatar?: string | undefined;
|
|
510
510
|
referenceAvatar?: string | undefined;
|
|
511
511
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
512
512
|
languages?: string[] | undefined;
|
|
@@ -516,9 +516,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
516
516
|
character?: {
|
|
517
517
|
background?: {
|
|
518
518
|
gender?: string | undefined;
|
|
519
|
+
age?: string | undefined;
|
|
519
520
|
expertise?: string | undefined;
|
|
520
521
|
backstory?: string | undefined;
|
|
521
|
-
age?: string | undefined;
|
|
522
522
|
} | undefined;
|
|
523
523
|
speech?: {
|
|
524
524
|
tone?: string | undefined;
|
|
@@ -526,23 +526,23 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
526
526
|
formality?: string | undefined;
|
|
527
527
|
} | undefined;
|
|
528
528
|
personality?: {
|
|
529
|
+
values?: string | undefined;
|
|
529
530
|
traits?: string | undefined;
|
|
530
531
|
interests?: string | undefined;
|
|
531
|
-
values?: string | undefined;
|
|
532
532
|
quirks?: string | undefined;
|
|
533
533
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
534
534
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
535
535
|
} | undefined;
|
|
536
536
|
} | undefined;
|
|
537
537
|
}, {
|
|
538
|
-
role?: string | undefined;
|
|
539
|
-
avatar?: string | undefined;
|
|
540
538
|
name?: string | undefined;
|
|
541
539
|
core?: {
|
|
542
540
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
543
541
|
} | undefined;
|
|
544
|
-
rules?: string[] | undefined;
|
|
545
542
|
appearance?: string | undefined;
|
|
543
|
+
rules?: string[] | undefined;
|
|
544
|
+
role?: string | undefined;
|
|
545
|
+
avatar?: string | undefined;
|
|
546
546
|
referenceAvatar?: string | undefined;
|
|
547
547
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
548
548
|
languages?: string[] | undefined;
|
|
@@ -552,9 +552,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
552
552
|
character?: {
|
|
553
553
|
background?: {
|
|
554
554
|
gender?: string | undefined;
|
|
555
|
+
age?: string | undefined;
|
|
555
556
|
expertise?: string | undefined;
|
|
556
557
|
backstory?: string | undefined;
|
|
557
|
-
age?: string | undefined;
|
|
558
558
|
} | undefined;
|
|
559
559
|
speech?: {
|
|
560
560
|
tone?: string | undefined;
|
|
@@ -562,9 +562,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
562
562
|
formality?: string | undefined;
|
|
563
563
|
} | undefined;
|
|
564
564
|
personality?: {
|
|
565
|
+
values?: string | undefined;
|
|
565
566
|
traits?: string | undefined;
|
|
566
567
|
interests?: string | undefined;
|
|
567
|
-
values?: string | undefined;
|
|
568
568
|
quirks?: string | undefined;
|
|
569
569
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
570
570
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -573,14 +573,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
573
573
|
}>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
config: {
|
|
576
|
-
role?: string | undefined;
|
|
577
|
-
avatar?: string | undefined;
|
|
578
576
|
name?: string | undefined;
|
|
579
577
|
core?: {
|
|
580
578
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
581
579
|
} | undefined;
|
|
582
|
-
rules?: string[] | undefined;
|
|
583
580
|
appearance?: string | undefined;
|
|
581
|
+
rules?: string[] | undefined;
|
|
582
|
+
role?: string | undefined;
|
|
583
|
+
avatar?: string | undefined;
|
|
584
584
|
referenceAvatar?: string | undefined;
|
|
585
585
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
586
586
|
languages?: string[] | undefined;
|
|
@@ -590,9 +590,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
590
590
|
character?: {
|
|
591
591
|
background?: {
|
|
592
592
|
gender?: string | undefined;
|
|
593
|
+
age?: string | undefined;
|
|
593
594
|
expertise?: string | undefined;
|
|
594
595
|
backstory?: string | undefined;
|
|
595
|
-
age?: string | undefined;
|
|
596
596
|
} | undefined;
|
|
597
597
|
speech?: {
|
|
598
598
|
tone?: string | undefined;
|
|
@@ -600,9 +600,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
600
600
|
formality?: string | undefined;
|
|
601
601
|
} | undefined;
|
|
602
602
|
personality?: {
|
|
603
|
+
values?: string | undefined;
|
|
603
604
|
traits?: string | undefined;
|
|
604
605
|
interests?: string | undefined;
|
|
605
|
-
values?: string | undefined;
|
|
606
606
|
quirks?: string | undefined;
|
|
607
607
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
608
608
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -611,14 +611,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
611
611
|
};
|
|
612
612
|
}, {
|
|
613
613
|
config: {
|
|
614
|
-
role?: string | undefined;
|
|
615
|
-
avatar?: string | undefined;
|
|
616
614
|
name?: string | undefined;
|
|
617
615
|
core?: {
|
|
618
616
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
619
617
|
} | undefined;
|
|
620
|
-
rules?: string[] | undefined;
|
|
621
618
|
appearance?: string | undefined;
|
|
619
|
+
rules?: string[] | undefined;
|
|
620
|
+
role?: string | undefined;
|
|
621
|
+
avatar?: string | undefined;
|
|
622
622
|
referenceAvatar?: string | undefined;
|
|
623
623
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
624
624
|
languages?: string[] | undefined;
|
|
@@ -628,9 +628,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
628
628
|
character?: {
|
|
629
629
|
background?: {
|
|
630
630
|
gender?: string | undefined;
|
|
631
|
+
age?: string | undefined;
|
|
631
632
|
expertise?: string | undefined;
|
|
632
633
|
backstory?: string | undefined;
|
|
633
|
-
age?: string | undefined;
|
|
634
634
|
} | undefined;
|
|
635
635
|
speech?: {
|
|
636
636
|
tone?: string | undefined;
|
|
@@ -638,9 +638,9 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
638
638
|
formality?: string | undefined;
|
|
639
639
|
} | undefined;
|
|
640
640
|
personality?: {
|
|
641
|
+
values?: string | undefined;
|
|
641
642
|
traits?: string | undefined;
|
|
642
643
|
interests?: string | undefined;
|
|
643
|
-
values?: string | undefined;
|
|
644
644
|
quirks?: string | undefined;
|
|
645
645
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
646
646
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -15,13 +15,13 @@ export declare const LocationPresetMessageSchema: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
entityType: "system" | "agent" | "user" | "gimmick";
|
|
17
17
|
entityId: bigint;
|
|
18
|
-
image?: string | undefined;
|
|
19
18
|
message?: string | undefined;
|
|
19
|
+
image?: string | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
entityType: "system" | "agent" | "user" | "gimmick";
|
|
22
22
|
entityId: bigint;
|
|
23
|
-
image?: string | undefined;
|
|
24
23
|
message?: string | undefined;
|
|
24
|
+
image?: string | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
export type LocationPresetMessageDto = z.infer<typeof LocationPresetMessageSchema>;
|
|
27
27
|
export declare const LocationPresetCanvasSchema: z.ZodObject<{
|