@vellumai/plugin-api 0.10.8-dev.202607111823.3c66378 → 0.10.8-dev.202607111928.8412f93
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/index.d.ts +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -304,8 +304,12 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
304
304
|
}>>;
|
|
305
305
|
}, z.core.$strip>>;
|
|
306
306
|
stt: z.ZodDefault<z.ZodObject<{
|
|
307
|
-
mode: z.ZodDefault<z.
|
|
307
|
+
mode: z.ZodDefault<z.ZodEnum<{
|
|
308
|
+
managed: "managed";
|
|
309
|
+
"your-own": "your-own";
|
|
310
|
+
}>>;
|
|
308
311
|
provider: z.ZodEnum<{
|
|
312
|
+
vellum: "vellum";
|
|
309
313
|
deepgram: "deepgram";
|
|
310
314
|
"google-gemini": "google-gemini";
|
|
311
315
|
"openai-whisper": "openai-whisper";
|
package/package.json
CHANGED