refactor: trim embedding batch internal exports

This commit is contained in:
Peter Steinberger
2026-05-01 11:35:30 +01:00
parent 213bfcf79b
commit cc2564615b
3 changed files with 10 additions and 10 deletions

View File

@@ -19,12 +19,12 @@ type EmbeddingBatchExecutionParams = {
debug?: (message: string, data?: Record<string, unknown>) => void;
};
export type GeminiBatchRequest = {
type GeminiBatchRequest = {
custom_id: string;
request: GeminiTextEmbeddingRequest;
};
export type GeminiBatchStatus = {
type GeminiBatchStatus = {
name?: string;
state?: string;
outputConfig?: { file?: string; fileId?: string };
@@ -36,7 +36,7 @@ export type GeminiBatchStatus = {
error?: { message?: string };
};
export type GeminiBatchOutputLine = {
type GeminiBatchOutputLine = {
key?: string;
custom_id?: string;
request_id?: string;