@little-samo/samo-ai-sdk 0.1.0-rv1
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/LICENSE +21 -0
- package/README.md +50 -0
- package/dist/dto/entities/agents/agent.d.ts +13 -0
- package/dist/dto/entities/agents/agent.js +3 -0
- package/dist/dto/entities/agents/agent.js.map +1 -0
- package/dist/dto/entities/agents/agent.preset.d.ts +10 -0
- package/dist/dto/entities/agents/agent.preset.js +3 -0
- package/dist/dto/entities/agents/agent.preset.js.map +1 -0
- package/dist/dto/entities/agents/agent.requests.d.ts +537 -0
- package/dist/dto/entities/agents/agent.requests.js +24 -0
- package/dist/dto/entities/agents/agent.requests.js.map +1 -0
- package/dist/dto/entities/agents/index.d.ts +3 -0
- package/dist/dto/entities/agents/index.js +20 -0
- package/dist/dto/entities/agents/index.js.map +1 -0
- package/dist/dto/entities/entity.d.ts +8 -0
- package/dist/dto/entities/entity.js +3 -0
- package/dist/dto/entities/entity.js.map +1 -0
- package/dist/dto/entities/index.d.ts +3 -0
- package/dist/dto/entities/index.js +20 -0
- package/dist/dto/entities/index.js.map +1 -0
- package/dist/dto/entities/users/index.d.ts +2 -0
- package/dist/dto/entities/users/index.js +19 -0
- package/dist/dto/entities/users/index.js.map +1 -0
- package/dist/dto/entities/users/user.d.ts +16 -0
- package/dist/dto/entities/users/user.events.d.ts +14 -0
- package/dist/dto/entities/users/user.events.js +7 -0
- package/dist/dto/entities/users/user.events.js.map +1 -0
- package/dist/dto/entities/users/user.js +3 -0
- package/dist/dto/entities/users/user.js.map +1 -0
- package/dist/dto/index.d.ts +3 -0
- package/dist/dto/index.js +20 -0
- package/dist/dto/index.js.map +1 -0
- package/dist/dto/items/index.d.ts +4 -0
- package/dist/dto/items/index.js +21 -0
- package/dist/dto/items/index.js.map +1 -0
- package/dist/dto/items/item.d.ts +12 -0
- package/dist/dto/items/item.events.d.ts +19 -0
- package/dist/dto/items/item.events.js +8 -0
- package/dist/dto/items/item.events.js.map +1 -0
- package/dist/dto/items/item.js +3 -0
- package/dist/dto/items/item.js.map +1 -0
- package/dist/dto/items/item.rankings.d.ts +7 -0
- package/dist/dto/items/item.rankings.js +3 -0
- package/dist/dto/items/item.rankings.js.map +1 -0
- package/dist/dto/items/item.requests.d.ts +3 -0
- package/dist/dto/items/item.requests.js +36 -0
- package/dist/dto/items/item.requests.js.map +1 -0
- package/dist/dto/locations/index.d.ts +6 -0
- package/dist/dto/locations/index.js +23 -0
- package/dist/dto/locations/index.js.map +1 -0
- package/dist/dto/locations/location.d.ts +21 -0
- package/dist/dto/locations/location.events.d.ts +36 -0
- package/dist/dto/locations/location.events.js +11 -0
- package/dist/dto/locations/location.events.js.map +1 -0
- package/dist/dto/locations/location.js +3 -0
- package/dist/dto/locations/location.js.map +1 -0
- package/dist/dto/locations/location.messages.d.ts +13 -0
- package/dist/dto/locations/location.messages.js +3 -0
- package/dist/dto/locations/location.messages.js.map +1 -0
- package/dist/dto/locations/location.preset.d.ts +12 -0
- package/dist/dto/locations/location.preset.js +3 -0
- package/dist/dto/locations/location.preset.js.map +1 -0
- package/dist/dto/locations/location.requests.d.ts +214 -0
- package/dist/dto/locations/location.requests.js +27 -0
- package/dist/dto/locations/location.requests.js.map +1 -0
- package/dist/dto/locations/location.states.d.ts +3 -0
- package/dist/dto/locations/location.states.js +3 -0
- package/dist/dto/locations/location.states.js.map +1 -0
- package/dist/models/entities/agents/agent.config.d.ts +336 -0
- package/dist/models/entities/agents/agent.config.js +124 -0
- package/dist/models/entities/agents/agent.config.js.map +1 -0
- package/dist/models/entities/agents/agent.constants.d.ts +4 -0
- package/dist/models/entities/agents/agent.constants.js +7 -0
- package/dist/models/entities/agents/agent.constants.js.map +1 -0
- package/dist/models/entities/agents/index.d.ts +2 -0
- package/dist/models/entities/agents/index.js +19 -0
- package/dist/models/entities/agents/index.js.map +1 -0
- package/dist/models/entities/index.d.ts +1 -0
- package/dist/models/entities/index.js +18 -0
- package/dist/models/entities/index.js.map +1 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +19 -0
- package/dist/models/index.js.map +1 -0
- package/dist/models/locations/index.d.ts +2 -0
- package/dist/models/locations/index.js +19 -0
- package/dist/models/locations/index.js.map +1 -0
- package/dist/models/locations/location.config.d.ts +111 -0
- package/dist/models/locations/location.config.js +75 -0
- package/dist/models/locations/location.config.js.map +1 -0
- package/dist/models/locations/location.constants.d.ts +8 -0
- package/dist/models/locations/location.constants.js +11 -0
- package/dist/models/locations/location.constants.js.map +1 -0
- package/package.json +92 -0
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { LocationBasicDto } from './location';
|
|
3
|
+
import { LocationMessageDto } from './location.messages';
|
|
4
|
+
import { LocationPresetDto } from './location.preset';
|
|
5
|
+
export declare const LocationsPaginationQuerySchema: z.ZodObject<{
|
|
6
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
7
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
page: number;
|
|
10
|
+
limit: number;
|
|
11
|
+
}, {
|
|
12
|
+
page?: number | undefined;
|
|
13
|
+
limit?: number | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
export type LocationsPaginationQueryDto = z.infer<typeof LocationsPaginationQuerySchema>;
|
|
16
|
+
export interface LocationsPaginatedResponseDto {
|
|
17
|
+
data: LocationBasicDto[];
|
|
18
|
+
meta: {
|
|
19
|
+
total: number;
|
|
20
|
+
page: number;
|
|
21
|
+
limit: number;
|
|
22
|
+
totalPages: number;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
export interface LocationMessagesResponseDto {
|
|
26
|
+
messages: LocationMessageDto[];
|
|
27
|
+
cursor?: string;
|
|
28
|
+
}
|
|
29
|
+
export declare const LocationPresetsPaginationQuerySchema: z.ZodObject<{
|
|
30
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
31
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
page: number;
|
|
34
|
+
limit: number;
|
|
35
|
+
}, {
|
|
36
|
+
page?: number | undefined;
|
|
37
|
+
limit?: number | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
export type LocationPresetsPaginationQueryDto = z.infer<typeof LocationPresetsPaginationQuerySchema>;
|
|
40
|
+
export interface LocationPresetsPaginatedResponseDto {
|
|
41
|
+
data: LocationPresetDto[];
|
|
42
|
+
meta: {
|
|
43
|
+
total: number;
|
|
44
|
+
page: number;
|
|
45
|
+
limit: number;
|
|
46
|
+
totalPages: number;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
export declare const CreateLocationFromPresetSchema: z.ZodObject<{
|
|
50
|
+
presetId: z.ZodBigInt;
|
|
51
|
+
}, "strip", z.ZodTypeAny, {
|
|
52
|
+
presetId: bigint;
|
|
53
|
+
}, {
|
|
54
|
+
presetId: bigint;
|
|
55
|
+
}>;
|
|
56
|
+
export type CreateLocationFromPresetDto = z.infer<typeof CreateLocationFromPresetSchema>;
|
|
57
|
+
export interface CreateLocationFromPresetResponseDto {
|
|
58
|
+
location: LocationBasicDto;
|
|
59
|
+
}
|
|
60
|
+
export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
61
|
+
locationId: z.ZodBigInt;
|
|
62
|
+
config: z.ZodObject<{
|
|
63
|
+
name: z.ZodOptional<z.ZodString>;
|
|
64
|
+
thumbnail: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
65
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"CHAT">, z.ZodLiteral<"WEB_BROWSER">]>>;
|
|
66
|
+
core: z.ZodOptional<z.ZodObject<{
|
|
67
|
+
name: z.ZodUnion<[z.ZodLiteral<"round_robin">, z.ZodLiteral<"update_forever">, z.ZodLiteral<"update_once">]>;
|
|
68
|
+
sequential: z.ZodOptional<z.ZodBoolean>;
|
|
69
|
+
}, "strip", z.ZodTypeAny, {
|
|
70
|
+
name: "round_robin" | "update_forever" | "update_once";
|
|
71
|
+
sequential?: boolean | undefined;
|
|
72
|
+
}, {
|
|
73
|
+
name: "round_robin" | "update_forever" | "update_once";
|
|
74
|
+
sequential?: boolean | undefined;
|
|
75
|
+
}>>;
|
|
76
|
+
description: z.ZodOptional<z.ZodString>;
|
|
77
|
+
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
78
|
+
canvases: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
79
|
+
name: z.ZodString;
|
|
80
|
+
description: z.ZodString;
|
|
81
|
+
maxLength: z.ZodNumber;
|
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
|
83
|
+
name: string;
|
|
84
|
+
description: string;
|
|
85
|
+
maxLength: number;
|
|
86
|
+
}, {
|
|
87
|
+
name: string;
|
|
88
|
+
description: string;
|
|
89
|
+
maxLength: number;
|
|
90
|
+
}>, "many">>;
|
|
91
|
+
agentCanvases: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
|
+
name: z.ZodString;
|
|
93
|
+
description: z.ZodString;
|
|
94
|
+
maxLength: z.ZodNumber;
|
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
name: string;
|
|
97
|
+
description: string;
|
|
98
|
+
maxLength: number;
|
|
99
|
+
}, {
|
|
100
|
+
name: string;
|
|
101
|
+
description: string;
|
|
102
|
+
maxLength: number;
|
|
103
|
+
}>, "many">>;
|
|
104
|
+
}, "strip", z.ZodTypeAny, {
|
|
105
|
+
name?: string | undefined;
|
|
106
|
+
description?: string | undefined;
|
|
107
|
+
core?: {
|
|
108
|
+
name: "round_robin" | "update_forever" | "update_once";
|
|
109
|
+
sequential?: boolean | undefined;
|
|
110
|
+
} | undefined;
|
|
111
|
+
rules?: string[] | undefined;
|
|
112
|
+
thumbnail?: string | undefined;
|
|
113
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
114
|
+
canvases?: {
|
|
115
|
+
name: string;
|
|
116
|
+
description: string;
|
|
117
|
+
maxLength: number;
|
|
118
|
+
}[] | undefined;
|
|
119
|
+
agentCanvases?: {
|
|
120
|
+
name: string;
|
|
121
|
+
description: string;
|
|
122
|
+
maxLength: number;
|
|
123
|
+
}[] | undefined;
|
|
124
|
+
}, {
|
|
125
|
+
name?: string | undefined;
|
|
126
|
+
description?: string | undefined;
|
|
127
|
+
core?: {
|
|
128
|
+
name: "round_robin" | "update_forever" | "update_once";
|
|
129
|
+
sequential?: boolean | undefined;
|
|
130
|
+
} | undefined;
|
|
131
|
+
rules?: string[] | undefined;
|
|
132
|
+
thumbnail?: string | undefined;
|
|
133
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
134
|
+
canvases?: {
|
|
135
|
+
name: string;
|
|
136
|
+
description: string;
|
|
137
|
+
maxLength: number;
|
|
138
|
+
}[] | undefined;
|
|
139
|
+
agentCanvases?: {
|
|
140
|
+
name: string;
|
|
141
|
+
description: string;
|
|
142
|
+
maxLength: number;
|
|
143
|
+
}[] | undefined;
|
|
144
|
+
}>;
|
|
145
|
+
}, "strip", z.ZodTypeAny, {
|
|
146
|
+
config: {
|
|
147
|
+
name?: string | undefined;
|
|
148
|
+
description?: string | undefined;
|
|
149
|
+
core?: {
|
|
150
|
+
name: "round_robin" | "update_forever" | "update_once";
|
|
151
|
+
sequential?: boolean | undefined;
|
|
152
|
+
} | undefined;
|
|
153
|
+
rules?: string[] | undefined;
|
|
154
|
+
thumbnail?: string | undefined;
|
|
155
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
156
|
+
canvases?: {
|
|
157
|
+
name: string;
|
|
158
|
+
description: string;
|
|
159
|
+
maxLength: number;
|
|
160
|
+
}[] | undefined;
|
|
161
|
+
agentCanvases?: {
|
|
162
|
+
name: string;
|
|
163
|
+
description: string;
|
|
164
|
+
maxLength: number;
|
|
165
|
+
}[] | undefined;
|
|
166
|
+
};
|
|
167
|
+
locationId: bigint;
|
|
168
|
+
}, {
|
|
169
|
+
config: {
|
|
170
|
+
name?: string | undefined;
|
|
171
|
+
description?: string | undefined;
|
|
172
|
+
core?: {
|
|
173
|
+
name: "round_robin" | "update_forever" | "update_once";
|
|
174
|
+
sequential?: boolean | undefined;
|
|
175
|
+
} | undefined;
|
|
176
|
+
rules?: string[] | undefined;
|
|
177
|
+
thumbnail?: string | undefined;
|
|
178
|
+
environment?: "CHAT" | "WEB_BROWSER" | undefined;
|
|
179
|
+
canvases?: {
|
|
180
|
+
name: string;
|
|
181
|
+
description: string;
|
|
182
|
+
maxLength: number;
|
|
183
|
+
}[] | undefined;
|
|
184
|
+
agentCanvases?: {
|
|
185
|
+
name: string;
|
|
186
|
+
description: string;
|
|
187
|
+
maxLength: number;
|
|
188
|
+
}[] | undefined;
|
|
189
|
+
};
|
|
190
|
+
locationId: bigint;
|
|
191
|
+
}>;
|
|
192
|
+
export type LocationUpdateConfigDto = z.infer<typeof LocationUpdateConfigSchema>;
|
|
193
|
+
export declare const GetAgentHelperLocationSchema: z.ZodObject<{
|
|
194
|
+
agentId: z.ZodBigInt;
|
|
195
|
+
}, "strip", z.ZodTypeAny, {
|
|
196
|
+
agentId: bigint;
|
|
197
|
+
}, {
|
|
198
|
+
agentId: bigint;
|
|
199
|
+
}>;
|
|
200
|
+
export type GetAgentHelperLocationDto = z.infer<typeof GetAgentHelperLocationSchema>;
|
|
201
|
+
export interface GetAgentHelperLocationResponseDto {
|
|
202
|
+
location: LocationBasicDto;
|
|
203
|
+
}
|
|
204
|
+
export declare const GetLocationHelperLocationSchema: z.ZodObject<{
|
|
205
|
+
locationId: z.ZodBigInt;
|
|
206
|
+
}, "strip", z.ZodTypeAny, {
|
|
207
|
+
locationId: bigint;
|
|
208
|
+
}, {
|
|
209
|
+
locationId: bigint;
|
|
210
|
+
}>;
|
|
211
|
+
export type GetLocationHelperLocationDto = z.infer<typeof GetLocationHelperLocationSchema>;
|
|
212
|
+
export interface GetLocationHelperLocationResponseDto {
|
|
213
|
+
location: LocationBasicDto;
|
|
214
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetLocationHelperLocationSchema = exports.GetAgentHelperLocationSchema = exports.LocationUpdateConfigSchema = exports.CreateLocationFromPresetSchema = exports.LocationPresetsPaginationQuerySchema = exports.LocationsPaginationQuerySchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const location_config_1 = require("../../models/locations/location.config");
|
|
6
|
+
exports.LocationsPaginationQuerySchema = zod_1.z.object({
|
|
7
|
+
page: zod_1.z.coerce.number().int().min(1).optional().default(1),
|
|
8
|
+
limit: zod_1.z.coerce.number().int().min(1).max(100).optional().default(10),
|
|
9
|
+
});
|
|
10
|
+
exports.LocationPresetsPaginationQuerySchema = zod_1.z.object({
|
|
11
|
+
page: zod_1.z.coerce.number().int().min(1).optional().default(1),
|
|
12
|
+
limit: zod_1.z.coerce.number().int().min(1).max(100).optional().default(20),
|
|
13
|
+
});
|
|
14
|
+
exports.CreateLocationFromPresetSchema = zod_1.z.object({
|
|
15
|
+
presetId: zod_1.z.bigint(),
|
|
16
|
+
});
|
|
17
|
+
exports.LocationUpdateConfigSchema = zod_1.z.object({
|
|
18
|
+
locationId: zod_1.z.bigint(),
|
|
19
|
+
config: location_config_1.LocationConfigSchema.partial(),
|
|
20
|
+
});
|
|
21
|
+
exports.GetAgentHelperLocationSchema = zod_1.z.object({
|
|
22
|
+
agentId: zod_1.z.bigint(),
|
|
23
|
+
});
|
|
24
|
+
exports.GetLocationHelperLocationSchema = zod_1.z.object({
|
|
25
|
+
locationId: zod_1.z.bigint(),
|
|
26
|
+
});
|
|
27
|
+
//# sourceMappingURL=location.requests.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"location.requests.js","sourceRoot":"","sources":["../../../src/dto/locations/location.requests.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,4EAA8E;AAMjE,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACtE,CAAC,CAAC;AAqBU,QAAA,oCAAoC,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3D,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACtE,CAAC,CAAC;AAgBU,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAC;AAUU,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IACjD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,MAAM,EAAE,sCAAoB,CAAC,OAAO,EAAE;CACvC,CAAC,CAAC;AAMU,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAC;AAUU,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;CACvB,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"location.states.js","sourceRoot":"","sources":["../../../src/dto/locations/location.states.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const PREDEFINED_AVATARS: Record<string, string>;
|
|
3
|
+
export declare const AgentConfigCoreSchema: z.ZodObject<{
|
|
4
|
+
name: z.ZodUnion<[z.ZodLiteral<"evaluate_and_actions">, z.ZodLiteral<"execute_actions">, z.ZodLiteral<"response_every_message">]>;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
7
|
+
}, {
|
|
8
|
+
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
9
|
+
}>;
|
|
10
|
+
export type AgentConfigCore = z.infer<typeof AgentConfigCoreSchema>;
|
|
11
|
+
declare const LlmPresetSchema: z.ZodUnion<[z.ZodLiteral<"gemini-low">, z.ZodLiteral<"gemini-medium">, z.ZodLiteral<"gemini-high">, z.ZodLiteral<"openai-low">, z.ZodLiteral<"openai-medium">, z.ZodLiteral<"anthropic-low">, z.ZodLiteral<"anthropic-medium">, z.ZodLiteral<"anthropic-high">, z.ZodLiteral<"deepseek-low">, z.ZodLiteral<"deepseek-medium">]>;
|
|
12
|
+
export type LlmPreset = z.infer<typeof LlmPresetSchema>;
|
|
13
|
+
export declare const AgentConfigSchema: z.ZodObject<{
|
|
14
|
+
name: z.ZodString;
|
|
15
|
+
avatar: z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[], z.ZodString]>;
|
|
16
|
+
appearance: z.ZodString;
|
|
17
|
+
core: z.ZodObject<{
|
|
18
|
+
name: z.ZodUnion<[z.ZodLiteral<"evaluate_and_actions">, z.ZodLiteral<"execute_actions">, z.ZodLiteral<"response_every_message">]>;
|
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
21
|
+
}, {
|
|
22
|
+
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
23
|
+
}>;
|
|
24
|
+
llmPreset: z.ZodUnion<[z.ZodLiteral<"gemini-low">, z.ZodLiteral<"gemini-medium">, z.ZodLiteral<"gemini-high">, z.ZodLiteral<"openai-low">, z.ZodLiteral<"openai-medium">, z.ZodLiteral<"anthropic-low">, z.ZodLiteral<"anthropic-medium">, z.ZodLiteral<"anthropic-high">, z.ZodLiteral<"deepseek-low">, z.ZodLiteral<"deepseek-medium">]>;
|
|
25
|
+
languages: z.ZodArray<z.ZodString, "many">;
|
|
26
|
+
timeZone: z.ZodString;
|
|
27
|
+
greeting: z.ZodString;
|
|
28
|
+
actions: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"explore_web">, z.ZodLiteral<"todo">]>, "many">;
|
|
29
|
+
character: z.ZodOptional<z.ZodObject<{
|
|
30
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
31
|
+
role: z.ZodOptional<z.ZodString>;
|
|
32
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
33
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
34
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
35
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
36
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
37
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
38
|
+
role: z.ZodOptional<z.ZodString>;
|
|
39
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
40
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
41
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
42
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
43
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
44
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
45
|
+
role: z.ZodOptional<z.ZodString>;
|
|
46
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
47
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
48
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
49
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
50
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
51
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
52
|
+
speech: z.ZodOptional<z.ZodObject<{
|
|
53
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
54
|
+
style: z.ZodOptional<z.ZodString>;
|
|
55
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
56
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
57
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
58
|
+
style: z.ZodOptional<z.ZodString>;
|
|
59
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
60
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
61
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
62
|
+
style: z.ZodOptional<z.ZodString>;
|
|
63
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
64
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
65
|
+
personality: z.ZodOptional<z.ZodObject<{
|
|
66
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
67
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
68
|
+
values: z.ZodOptional<z.ZodString>;
|
|
69
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
70
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
71
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
72
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
73
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
74
|
+
values: z.ZodOptional<z.ZodString>;
|
|
75
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
76
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
77
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
78
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
79
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
80
|
+
values: z.ZodOptional<z.ZodString>;
|
|
81
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
82
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
83
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
84
|
+
}, "strip", z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, z.objectOutputType<{
|
|
85
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
86
|
+
role: z.ZodOptional<z.ZodString>;
|
|
87
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
88
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
89
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
90
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
91
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
92
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
93
|
+
role: z.ZodOptional<z.ZodString>;
|
|
94
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
95
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
96
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
97
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
98
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
99
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
100
|
+
role: z.ZodOptional<z.ZodString>;
|
|
101
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
102
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
103
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
104
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
105
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
106
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
107
|
+
speech: z.ZodOptional<z.ZodObject<{
|
|
108
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
109
|
+
style: z.ZodOptional<z.ZodString>;
|
|
110
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
111
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
112
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
113
|
+
style: z.ZodOptional<z.ZodString>;
|
|
114
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
115
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
116
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
117
|
+
style: z.ZodOptional<z.ZodString>;
|
|
118
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
119
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
120
|
+
personality: z.ZodOptional<z.ZodObject<{
|
|
121
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
122
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
123
|
+
values: z.ZodOptional<z.ZodString>;
|
|
124
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
125
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
126
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
127
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
128
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
129
|
+
values: z.ZodOptional<z.ZodString>;
|
|
130
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
131
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
132
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
133
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
134
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
135
|
+
values: z.ZodOptional<z.ZodString>;
|
|
136
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
137
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
138
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
139
|
+
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip">, z.objectInputType<{
|
|
140
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
141
|
+
role: z.ZodOptional<z.ZodString>;
|
|
142
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
143
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
144
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
145
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
146
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
147
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
148
|
+
role: z.ZodOptional<z.ZodString>;
|
|
149
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
150
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
151
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
152
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
153
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
154
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
155
|
+
role: z.ZodOptional<z.ZodString>;
|
|
156
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
157
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
158
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
159
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
160
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
161
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
162
|
+
speech: z.ZodOptional<z.ZodObject<{
|
|
163
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
164
|
+
style: z.ZodOptional<z.ZodString>;
|
|
165
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
166
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
167
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
168
|
+
style: z.ZodOptional<z.ZodString>;
|
|
169
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
170
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
171
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
172
|
+
style: z.ZodOptional<z.ZodString>;
|
|
173
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
174
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
175
|
+
personality: z.ZodOptional<z.ZodObject<{
|
|
176
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
177
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
178
|
+
values: z.ZodOptional<z.ZodString>;
|
|
179
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
180
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
181
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
182
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
183
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
184
|
+
values: z.ZodOptional<z.ZodString>;
|
|
185
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
186
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
187
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
188
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
189
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
190
|
+
values: z.ZodOptional<z.ZodString>;
|
|
191
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
192
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
193
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
194
|
+
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip">>>;
|
|
195
|
+
rules: z.ZodArray<z.ZodString, "many">;
|
|
196
|
+
}, "strip", z.ZodTypeAny, {
|
|
197
|
+
name: string;
|
|
198
|
+
avatar: string;
|
|
199
|
+
appearance: string;
|
|
200
|
+
core: {
|
|
201
|
+
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
202
|
+
};
|
|
203
|
+
llmPreset: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "anthropic-low" | "anthropic-medium" | "anthropic-high" | "deepseek-low" | "deepseek-medium";
|
|
204
|
+
languages: string[];
|
|
205
|
+
timeZone: string;
|
|
206
|
+
greeting: string;
|
|
207
|
+
actions: ("explore_web" | "todo")[];
|
|
208
|
+
rules: string[];
|
|
209
|
+
character?: z.objectOutputType<{
|
|
210
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
211
|
+
role: z.ZodOptional<z.ZodString>;
|
|
212
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
213
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
214
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
215
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
216
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
217
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
218
|
+
role: z.ZodOptional<z.ZodString>;
|
|
219
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
220
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
221
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
222
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
223
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
224
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
225
|
+
role: z.ZodOptional<z.ZodString>;
|
|
226
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
227
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
228
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
229
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
230
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
231
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
232
|
+
speech: z.ZodOptional<z.ZodObject<{
|
|
233
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
234
|
+
style: z.ZodOptional<z.ZodString>;
|
|
235
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
236
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
237
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
238
|
+
style: z.ZodOptional<z.ZodString>;
|
|
239
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
240
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
241
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
242
|
+
style: z.ZodOptional<z.ZodString>;
|
|
243
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
244
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
245
|
+
personality: z.ZodOptional<z.ZodObject<{
|
|
246
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
247
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
248
|
+
values: z.ZodOptional<z.ZodString>;
|
|
249
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
250
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
251
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
252
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
253
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
254
|
+
values: z.ZodOptional<z.ZodString>;
|
|
255
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
256
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
257
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
258
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
259
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
260
|
+
values: z.ZodOptional<z.ZodString>;
|
|
261
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
262
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
263
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
264
|
+
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip"> | undefined;
|
|
265
|
+
}, {
|
|
266
|
+
name: string;
|
|
267
|
+
avatar: string;
|
|
268
|
+
appearance: string;
|
|
269
|
+
core: {
|
|
270
|
+
name: "evaluate_and_actions" | "execute_actions" | "response_every_message";
|
|
271
|
+
};
|
|
272
|
+
llmPreset: "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "anthropic-low" | "anthropic-medium" | "anthropic-high" | "deepseek-low" | "deepseek-medium";
|
|
273
|
+
languages: string[];
|
|
274
|
+
timeZone: string;
|
|
275
|
+
greeting: string;
|
|
276
|
+
actions: ("explore_web" | "todo")[];
|
|
277
|
+
rules: string[];
|
|
278
|
+
character?: z.objectInputType<{
|
|
279
|
+
background: z.ZodOptional<z.ZodObject<{
|
|
280
|
+
role: z.ZodOptional<z.ZodString>;
|
|
281
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
282
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
283
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
284
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
285
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
286
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
287
|
+
role: z.ZodOptional<z.ZodString>;
|
|
288
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
289
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
290
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
291
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
292
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
293
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
294
|
+
role: z.ZodOptional<z.ZodString>;
|
|
295
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
296
|
+
expertise: z.ZodOptional<z.ZodString>;
|
|
297
|
+
backstory: z.ZodOptional<z.ZodString>;
|
|
298
|
+
birthDate: z.ZodOptional<z.ZodString>;
|
|
299
|
+
occupation: z.ZodOptional<z.ZodString>;
|
|
300
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
301
|
+
speech: z.ZodOptional<z.ZodObject<{
|
|
302
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
303
|
+
style: z.ZodOptional<z.ZodString>;
|
|
304
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
305
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
306
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
307
|
+
style: z.ZodOptional<z.ZodString>;
|
|
308
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
309
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
310
|
+
tone: z.ZodOptional<z.ZodString>;
|
|
311
|
+
style: z.ZodOptional<z.ZodString>;
|
|
312
|
+
formality: z.ZodOptional<z.ZodString>;
|
|
313
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
314
|
+
personality: z.ZodOptional<z.ZodObject<{
|
|
315
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
316
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
317
|
+
values: z.ZodOptional<z.ZodString>;
|
|
318
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
319
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
320
|
+
}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{
|
|
321
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
322
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
323
|
+
values: z.ZodOptional<z.ZodString>;
|
|
324
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
325
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
326
|
+
}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{
|
|
327
|
+
traits: z.ZodOptional<z.ZodString>;
|
|
328
|
+
interests: z.ZodOptional<z.ZodString>;
|
|
329
|
+
values: z.ZodOptional<z.ZodString>;
|
|
330
|
+
quirks: z.ZodOptional<z.ZodString>;
|
|
331
|
+
mbti: z.ZodOptional<z.ZodString>;
|
|
332
|
+
}, z.ZodOptional<z.ZodString>, "strip">>>;
|
|
333
|
+
}, z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodObject<{}, "strip", z.ZodOptional<z.ZodString>, z.objectOutputType<{}, z.ZodOptional<z.ZodString>, "strip">, z.objectInputType<{}, z.ZodOptional<z.ZodString>, "strip">>]>, "strip"> | undefined;
|
|
334
|
+
}>;
|
|
335
|
+
export type AgentConfig = z.infer<typeof AgentConfigSchema>;
|
|
336
|
+
export {};
|