@vellumai/plugin-api 0.10.10-dev.202607211734.3ee8a7b → 0.10.10-dev.202607211915.ea3ba71
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 +17 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -707,6 +707,7 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
707
707
|
gemini: "gemini";
|
|
708
708
|
fireworks: "fireworks";
|
|
709
709
|
openrouter: "openrouter";
|
|
710
|
+
vellum: "vellum";
|
|
710
711
|
ollama: "ollama";
|
|
711
712
|
"vercel-ai-gateway": "vercel-ai-gateway";
|
|
712
713
|
"openai-compatible": "openai-compatible";
|
|
@@ -715,6 +716,7 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
715
716
|
together: "together";
|
|
716
717
|
litellm: "litellm";
|
|
717
718
|
baseten: "baseten";
|
|
719
|
+
chatgpt: "chatgpt";
|
|
718
720
|
}>>;
|
|
719
721
|
model: z.ZodOptional<z.ZodString>;
|
|
720
722
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -842,6 +844,7 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
842
844
|
gemini: "gemini";
|
|
843
845
|
fireworks: "fireworks";
|
|
844
846
|
openrouter: "openrouter";
|
|
847
|
+
vellum: "vellum";
|
|
845
848
|
ollama: "ollama";
|
|
846
849
|
"vercel-ai-gateway": "vercel-ai-gateway";
|
|
847
850
|
"openai-compatible": "openai-compatible";
|
|
@@ -850,6 +853,7 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
850
853
|
together: "together";
|
|
851
854
|
litellm: "litellm";
|
|
852
855
|
baseten: "baseten";
|
|
856
|
+
chatgpt: "chatgpt";
|
|
853
857
|
}>>;
|
|
854
858
|
model: z.ZodOptional<z.ZodString>;
|
|
855
859
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1180,6 +1184,13 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
1180
1184
|
ackFirstDeltaTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
1181
1185
|
ackGenerationTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
1182
1186
|
llmAckText: z.ZodDefault<z.ZodBoolean>;
|
|
1187
|
+
progress: z.ZodDefault<z.ZodObject<{
|
|
1188
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1189
|
+
opsThreshold: z.ZodDefault<z.ZodNumber>;
|
|
1190
|
+
idleIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
1191
|
+
minGapMs: z.ZodDefault<z.ZodNumber>;
|
|
1192
|
+
generationTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
1193
|
+
}, z.core.$strip>>;
|
|
1183
1194
|
}, z.core.$strip>>;
|
|
1184
1195
|
maxSessionDurationSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1185
1196
|
archiveAudio: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -3812,6 +3823,12 @@ declare interface LiveVoiceMetricsServerFrame extends LiveVoiceServerFrameBase {
|
|
|
3812
3823
|
readonly endpointDecisionMaxLatencyMs?: number;
|
|
3813
3824
|
/** Which floor-holding ack actually spoke during the turn, if any. */
|
|
3814
3825
|
readonly ackSpoken?: "first_delta" | "tool_use";
|
|
3826
|
+
/**
|
|
3827
|
+
* Spoken progress narrations during the turn. Present only when at least
|
|
3828
|
+
* one progress update spoke (otherwise the field is absent, keeping frames
|
|
3829
|
+
* unchanged).
|
|
3830
|
+
*/
|
|
3831
|
+
readonly progressUpdatesSpoken?: number;
|
|
3815
3832
|
}
|
|
3816
3833
|
|
|
3817
3834
|
declare const LiveVoiceProtocolErrorCode: {
|
package/package.json
CHANGED