forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.ts
152 lines (144 loc) · 4.75 KB
/
environment.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import { z } from "zod";
import { ModelProviderName, Clients } from "./types";
// TODO: TO COMPLETE
export const envSchema = z.object({
// API Keys with specific formats
OPENAI_API_KEY: z
.string()
.startsWith("sk-", "OpenAI API key must start with 'sk-'"),
REDPILL_API_KEY: z.string().min(1, "REDPILL API key is required"),
GROK_API_KEY: z.string().min(1, "GROK API key is required"),
GROQ_API_KEY: z
.string()
.startsWith("gsk_", "GROQ API key must start with 'gsk_'"),
OPENROUTER_API_KEY: z.string().min(1, "OpenRouter API key is required"),
GOOGLE_GENERATIVE_AI_API_KEY: z
.string()
.min(1, "Gemini API key is required"),
ELEVENLABS_XI_API_KEY: z.string().min(1, "ElevenLabs API key is required"),
});
// Type inference
export type EnvConfig = z.infer<typeof envSchema>;
// Validation function
export function validateEnv(): EnvConfig {
try {
return envSchema.parse(process.env);
} catch (error) {
if (error instanceof z.ZodError) {
const errorMessages = error.errors
.map((err) => `${err.path}: ${err.message}`)
.join("\n");
throw new Error(`Environment validation failed:\n${errorMessages}`);
}
throw error;
}
}
// Helper schemas for nested types
const MessageExampleSchema = z.object({
user: z.string(),
content: z
.object({
text: z.string(),
action: z.string().optional(),
source: z.string().optional(),
url: z.string().optional(),
inReplyTo: z.string().uuid().optional(),
attachments: z.array(z.any()).optional(),
})
.and(z.record(z.string(), z.unknown())), // For additional properties
});
const PluginSchema = z.object({
name: z.string(),
description: z.string(),
actions: z.array(z.any()).optional(),
providers: z.array(z.any()).optional(),
evaluators: z.array(z.any()).optional(),
services: z.array(z.any()).optional(),
clients: z.array(z.any()).optional(),
});
// Main Character schema
export const CharacterSchema = z.object({
id: z.string().uuid().optional(),
name: z.string(),
system: z.string().optional(),
modelProvider: z.nativeEnum(ModelProviderName),
modelEndpointOverride: z.string().optional(),
templates: z.record(z.string()).optional(),
bio: z.union([z.string(), z.array(z.string())]),
lore: z.array(z.string()),
messageExamples: z.array(z.array(MessageExampleSchema)),
postExamples: z.array(z.string()),
topics: z.array(z.string()),
adjectives: z.array(z.string()),
knowledge: z.array(z.string()).optional(),
clients: z.array(z.nativeEnum(Clients)),
plugins: z.union([
z.array(z.string()),
z.array(PluginSchema),
]),
settings: z
.object({
secrets: z.record(z.string()).optional(),
voice: z
.object({
model: z.string().optional(),
url: z.string().optional(),
})
.optional(),
model: z.string().optional(),
embeddingModel: z.string().optional(),
})
.optional(),
clientConfig: z
.object({
discord: z
.object({
shouldIgnoreBotMessages: z.boolean().optional(),
shouldIgnoreDirectMessages: z.boolean().optional(),
})
.optional(),
telegram: z
.object({
shouldIgnoreBotMessages: z.boolean().optional(),
shouldIgnoreDirectMessages: z.boolean().optional(),
})
.optional(),
})
.optional(),
style: z.object({
all: z.array(z.string()),
chat: z.array(z.string()),
post: z.array(z.string()),
}),
twitterProfile: z
.object({
username: z.string(),
screenName: z.string(),
bio: z.string(),
nicknames: z.array(z.string()).optional(),
})
.optional(),
nft: z
.object({
prompt: z.string().optional(),
})
.optional(),
});
// Type inference
export type CharacterConfig = z.infer<typeof CharacterSchema>;
// Validation function
export function validateCharacterConfig(json: unknown): CharacterConfig {
try {
return CharacterSchema.parse(json);
} catch (error) {
if (error instanceof z.ZodError) {
const errorMessages = error.errors
.map((err) => `${err.path.join(".")}: ${err.message}`)
.join("\n");
throw new Error(
`Character configuration validation failed:\n${errorMessages}`
);
}
throw error;
}
}