@musnows/scriverse 1.0.0 → 1.0.2

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/app.js CHANGED
@@ -504,6 +504,7 @@ const modelSchema = z.object({
504
504
  });
505
505
  const aiPromptSchema = z.object({
506
506
  systemPrompt: z.string().max(100_000).optional(),
507
+ systemPromptOverride: z.boolean().optional(),
507
508
  imageToolModelId: identifier.nullable().optional(),
508
509
  streamIdleTimeoutSeconds: z.number().int().min(MIN_AI_STREAM_IDLE_TIMEOUT_SECONDS).max(MAX_AI_STREAM_IDLE_TIMEOUT_SECONDS).optional()
509
510
  });
@@ -639,6 +640,7 @@ const aiProcessStepSchema = z.discriminatedUnion("type", [
639
640
  ]);
640
641
  const workAiSettingsSchema = z.object({
641
642
  systemPrompt: z.string().max(100_000).optional(),
643
+ systemPromptOverride: z.boolean().optional(),
642
644
  dailyTokenQuota: z.number().int().min(1, "Token 额度必须设置大于 0").max(2_000_000_000).nullable().optional(),
643
645
  monthlyTokenQuota: z.number().int().min(1, "Token 额度必须设置大于 0").max(2_000_000_000).nullable().optional(),
644
646
  autoRunEnabled: z.boolean().optional(),