@opengeni/config 0.10.7 → 0.10.9
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -301,7 +301,7 @@ var SettingsSchema = z.object({
|
|
|
301
301
|
// and hard ceilings. Selection happens once before audio is sent — never retry
|
|
302
302
|
// the same clip across vendors after an upstream request may have started.
|
|
303
303
|
voiceInputMaxDurationSeconds: z.coerce.number().int().positive().max(600).default(60),
|
|
304
|
-
voiceInputMaxSizeBytes: z.coerce.number().int().positive().max(
|
|
304
|
+
voiceInputMaxSizeBytes: z.coerce.number().int().positive().max(25 * 1024 * 1024).default(25 * 1024 * 1024),
|
|
305
305
|
// Preferred provider order (comma-separated ids). First configured+ready wins.
|
|
306
306
|
// Codex subscription STT is preferred by default when subscription routing is
|
|
307
307
|
// enabled; operators can put openai/azure-openai first explicitly.
|