@musnows/scriverse 0.9.7 → 0.9.8

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
@@ -701,7 +701,7 @@ const desktopLocalAiRuntimeModelSchema = z.object({
701
701
  id: identifier,
702
702
  providerId: identifier,
703
703
  providerName: nonEmpty.max(200),
704
- protocol: z.literal("openai-chat-completions"),
704
+ protocol: z.enum(AI_PROVIDER_PROTOCOLS),
705
705
  maxTokensParameter: z.enum(MAX_TOKENS_PARAMETERS),
706
706
  thinkingType: z.enum(["enabled", "adaptive"]),
707
707
  concurrencyLimit: z.number().int().min(1).max(100),