Apply the bracketed Convex API module references required by the kebab-case module rename

This commit is contained in:
sai karthik
2026-07-23 00:50:08 +05:30
parent 74a209a807
commit b0aef54249
24 changed files with 1330 additions and 239 deletions

View File

@@ -8,6 +8,9 @@ const agentEnvSchema = z.object({
AGENT_MODEL_MAX_TOKENS: z.coerce.number().int().positive(),
AGENT_MODEL_NAME: z.string().min(1),
AGENT_MODEL_PROVIDER: z.string().min(1),
CONVEX_URL: z.url(),
DAEMON_ID: z.string().min(1),
FLUE_DB_TOKEN: z.string().min(1),
});
export type AgentEnv = z.infer<typeof agentEnvSchema>;