@eaziz/prepare 0.1.2 → 0.1.4
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/README.md +41 -6
- package/dist/async-job.d.ts +29 -0
- package/dist/async-job.d.ts.map +1 -0
- package/dist/async-job.js +29 -0
- package/dist/async-job.js.map +1 -0
- package/dist/contracts.d.ts +0 -45
- package/dist/contracts.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/protocol-registry.d.ts +8 -10
- package/dist/protocol-registry.d.ts.map +1 -1
- package/dist/protocol-registry.js +63 -2
- package/dist/protocol-registry.js.map +1 -1
- package/dist/protocols/catalog.d.ts +2 -2
- package/dist/protocols/catalog.d.ts.map +1 -1
- package/dist/protocols/catalog.js +2 -15
- package/dist/protocols/catalog.js.map +1 -1
- package/dist/protocols/images.d.ts +23 -2
- package/dist/protocols/images.d.ts.map +1 -1
- package/dist/protocols/images.js +88 -21
- package/dist/protocols/images.js.map +1 -1
- package/dist/protocols/realtime.d.ts +3 -3
- package/dist/protocols/realtime.d.ts.map +1 -1
- package/dist/protocols/realtime.js.map +1 -1
- package/dist/protocols/speech.d.ts +9 -8
- package/dist/protocols/speech.d.ts.map +1 -1
- package/dist/protocols/speech.js +26 -70
- package/dist/protocols/speech.js.map +1 -1
- package/dist/protocols/text.d.ts +11 -10
- package/dist/protocols/text.d.ts.map +1 -1
- package/dist/protocols/text.js +9 -306
- package/dist/protocols/text.js.map +1 -1
- package/dist/protocols/transcription.d.ts +9 -5
- package/dist/protocols/transcription.d.ts.map +1 -1
- package/dist/protocols/transcription.js +14 -26
- package/dist/protocols/transcription.js.map +1 -1
- package/dist/protocols/video.d.ts +5 -9
- package/dist/protocols/video.d.ts.map +1 -1
- package/dist/protocols/video.js +5 -18
- package/dist/protocols/video.js.map +1 -1
- package/dist/request-builders/multipart.d.ts +2 -2
- package/dist/request-builders/multipart.d.ts.map +1 -1
- package/dist/request-builders/multipart.js +3 -3
- package/dist/request-builders/multipart.js.map +1 -1
- package/dist/request-compiler.d.ts +1 -0
- package/dist/request-compiler.d.ts.map +1 -1
- package/dist/request-compiler.js.map +1 -1
- package/dist/request-types.d.ts +170 -72
- package/dist/request-types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/request-types.d.ts
CHANGED
|
@@ -1,107 +1,205 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ModelType } from "./contracts.js";
|
|
2
2
|
import type { ProtocolFor } from "./protocol-registry.js";
|
|
3
|
+
export type WireRecord = Readonly<Record<string, unknown>>;
|
|
4
|
+
export type MediaValue = Blob | Uint8Array | string;
|
|
3
5
|
export interface PreparationBase<TModelType extends ModelType, TProtocol extends string, TInput> {
|
|
4
6
|
readonly modelType: TModelType;
|
|
5
7
|
readonly protocol: TProtocol;
|
|
6
8
|
readonly model: string;
|
|
9
|
+
/** Protocol-native fields. The compiler does not rename or normalize them. */
|
|
7
10
|
readonly input: TInput;
|
|
8
11
|
readonly baseURL?: string;
|
|
9
12
|
readonly endpoint?: string;
|
|
10
13
|
readonly headers?: HeadersInit;
|
|
11
14
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
readonly
|
|
15
|
+
/** OpenAI Chat Completions request body, excluding the outer model field. */
|
|
16
|
+
export type OpenAIChatInput = WireRecord & {
|
|
17
|
+
readonly messages: readonly WireRecord[];
|
|
15
18
|
readonly stream?: boolean;
|
|
16
19
|
readonly temperature?: number;
|
|
17
|
-
readonly
|
|
20
|
+
readonly top_p?: number;
|
|
21
|
+
readonly max_tokens?: number;
|
|
22
|
+
readonly tools?: readonly WireRecord[];
|
|
23
|
+
readonly tool_choice?: unknown;
|
|
24
|
+
readonly response_format?: unknown;
|
|
18
25
|
readonly stop?: string | readonly string[];
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
26
|
+
};
|
|
27
|
+
/** OpenAI Responses request body, excluding the outer model field. */
|
|
28
|
+
export type OpenAIResponsesInput = WireRecord & {
|
|
29
|
+
readonly input: string | readonly WireRecord[];
|
|
22
30
|
readonly instructions?: string;
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
25
|
-
|
|
26
|
-
|
|
31
|
+
readonly stream?: boolean;
|
|
32
|
+
readonly max_output_tokens?: number;
|
|
33
|
+
readonly temperature?: number;
|
|
34
|
+
readonly top_p?: number;
|
|
35
|
+
readonly tools?: readonly WireRecord[];
|
|
36
|
+
readonly tool_choice?: unknown;
|
|
37
|
+
readonly reasoning?: WireRecord;
|
|
38
|
+
readonly text?: WireRecord;
|
|
39
|
+
};
|
|
40
|
+
/** Anthropic Messages request body, excluding the outer model field. */
|
|
41
|
+
export type AnthropicInput = WireRecord & {
|
|
42
|
+
readonly messages: readonly WireRecord[];
|
|
43
|
+
readonly max_tokens: number;
|
|
44
|
+
readonly system?: string | readonly WireRecord[];
|
|
45
|
+
readonly stream?: boolean;
|
|
46
|
+
readonly temperature?: number;
|
|
47
|
+
readonly top_p?: number;
|
|
48
|
+
readonly stop_sequences?: readonly string[];
|
|
49
|
+
readonly tools?: readonly WireRecord[];
|
|
50
|
+
readonly tool_choice?: unknown;
|
|
51
|
+
};
|
|
52
|
+
/** Gemini GenerateContent request body. `stream` selects the SSE endpoint and is omitted from the body. */
|
|
53
|
+
export type GeminiInput = WireRecord & {
|
|
54
|
+
readonly contents: readonly WireRecord[];
|
|
55
|
+
readonly systemInstruction?: WireRecord;
|
|
56
|
+
readonly generationConfig?: WireRecord;
|
|
57
|
+
readonly tools?: readonly WireRecord[];
|
|
58
|
+
readonly stream?: boolean;
|
|
59
|
+
};
|
|
60
|
+
export type EmbeddingInput = WireRecord & {
|
|
27
61
|
readonly input: string | readonly string[] | readonly number[] | readonly (readonly number[])[];
|
|
28
62
|
readonly dimensions?: number;
|
|
29
|
-
readonly
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
export interface RerankInput {
|
|
63
|
+
readonly encoding_format?: "float" | "base64";
|
|
64
|
+
};
|
|
65
|
+
export type RerankInput = WireRecord & {
|
|
33
66
|
readonly query: string;
|
|
34
|
-
readonly documents: readonly (string |
|
|
35
|
-
readonly
|
|
36
|
-
readonly
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
export interface ImageGenerationInput {
|
|
67
|
+
readonly documents: readonly (string | WireRecord)[];
|
|
68
|
+
readonly top_n?: number;
|
|
69
|
+
readonly return_documents?: boolean;
|
|
70
|
+
};
|
|
71
|
+
export type ImageGenerationInput = WireRecord & {
|
|
40
72
|
readonly prompt: string;
|
|
41
|
-
readonly
|
|
42
|
-
|
|
43
|
-
readonly height: number;
|
|
44
|
-
};
|
|
73
|
+
readonly stream?: boolean;
|
|
74
|
+
readonly size?: string;
|
|
45
75
|
readonly n?: number;
|
|
46
76
|
readonly quality?: string;
|
|
47
77
|
readonly style?: string;
|
|
48
|
-
readonly
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
78
|
+
readonly response_format?: string;
|
|
79
|
+
};
|
|
80
|
+
export type DashScopeImageInput = WireRecord & {
|
|
81
|
+
readonly input: WireRecord;
|
|
82
|
+
readonly parameters?: WireRecord;
|
|
83
|
+
};
|
|
84
|
+
export type VolcengineImageInput = WireRecord & {
|
|
85
|
+
readonly prompt: string;
|
|
86
|
+
readonly image?: string | readonly string[];
|
|
87
|
+
readonly stream?: boolean;
|
|
88
|
+
};
|
|
89
|
+
export type VolcengineImageEditingInput = VolcengineImageInput & {
|
|
90
|
+
readonly image: string | readonly string[];
|
|
91
|
+
};
|
|
92
|
+
export type ZhipuImageInput = WireRecord & {
|
|
93
|
+
readonly prompt: string;
|
|
94
|
+
readonly size?: string;
|
|
95
|
+
};
|
|
96
|
+
export type KlingImageInput = WireRecord & {
|
|
97
|
+
readonly prompt: string;
|
|
98
|
+
readonly image?: string;
|
|
99
|
+
};
|
|
100
|
+
export type KlingImageEditingInput = KlingImageInput & {
|
|
101
|
+
readonly image: string;
|
|
102
|
+
};
|
|
103
|
+
export type BflImageInput = WireRecord & {
|
|
104
|
+
readonly prompt: string;
|
|
105
|
+
};
|
|
106
|
+
export type MiniMaxImageInput = WireRecord & {
|
|
52
107
|
readonly prompt: string;
|
|
53
|
-
readonly
|
|
54
|
-
|
|
108
|
+
readonly subject_reference?: readonly WireRecord[];
|
|
109
|
+
};
|
|
110
|
+
export type MiniMaxImageEditingInput = MiniMaxImageInput & {
|
|
111
|
+
readonly subject_reference: readonly WireRecord[];
|
|
112
|
+
};
|
|
113
|
+
export type XfyunImageInput = WireRecord & {
|
|
114
|
+
readonly header: WireRecord & {
|
|
115
|
+
readonly app_id: string;
|
|
116
|
+
};
|
|
117
|
+
readonly parameter: WireRecord;
|
|
118
|
+
readonly payload: WireRecord;
|
|
119
|
+
};
|
|
120
|
+
export type XfyunHiDreamInput = WireRecord & {
|
|
121
|
+
readonly header: WireRecord & {
|
|
122
|
+
readonly app_id: string;
|
|
123
|
+
};
|
|
124
|
+
readonly parameter: WireRecord;
|
|
125
|
+
readonly payload: WireRecord;
|
|
126
|
+
};
|
|
127
|
+
/** OpenAI Images edit multipart fields. The wire field is `image` (serialized as `image[]` for multiple files). */
|
|
128
|
+
export type ImageEditingInput = WireRecord & {
|
|
129
|
+
readonly prompt: string;
|
|
130
|
+
readonly image: MediaValue | readonly MediaValue[];
|
|
131
|
+
readonly mask?: MediaValue;
|
|
132
|
+
readonly stream?: boolean;
|
|
55
133
|
readonly size?: string;
|
|
56
134
|
readonly n?: number;
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
readonly text: string;
|
|
135
|
+
};
|
|
136
|
+
export type OpenAISpeechInput = WireRecord & {
|
|
137
|
+
readonly input: string;
|
|
61
138
|
readonly voice?: string;
|
|
62
|
-
readonly
|
|
139
|
+
readonly response_format?: string;
|
|
63
140
|
readonly speed?: number;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
141
|
+
};
|
|
142
|
+
export type DashScopeSpeechInput = WireRecord & {
|
|
143
|
+
readonly input: WireRecord;
|
|
144
|
+
readonly parameters: WireRecord;
|
|
145
|
+
};
|
|
146
|
+
export type VolcengineSpeechInput = WireRecord & {
|
|
147
|
+
readonly user?: WireRecord;
|
|
148
|
+
readonly req_params: WireRecord;
|
|
149
|
+
};
|
|
150
|
+
export type XfyunSpeechInput = WireRecord & {
|
|
151
|
+
readonly common: WireRecord;
|
|
152
|
+
readonly business: WireRecord;
|
|
153
|
+
readonly data: WireRecord;
|
|
154
|
+
};
|
|
155
|
+
export type ZhipuSpeechInput = WireRecord & {
|
|
156
|
+
readonly input: string;
|
|
157
|
+
readonly voice?: string;
|
|
158
|
+
readonly response_format?: string;
|
|
159
|
+
readonly speed?: number;
|
|
160
|
+
readonly stream?: boolean;
|
|
161
|
+
};
|
|
162
|
+
export type MiniMaxSpeechInput = WireRecord & {
|
|
163
|
+
readonly text: string;
|
|
164
|
+
readonly voice_setting: WireRecord;
|
|
165
|
+
readonly audio_setting: WireRecord;
|
|
166
|
+
};
|
|
167
|
+
export type OpenAITranscriptionInput = WireRecord & {
|
|
168
|
+
readonly file: MediaValue;
|
|
69
169
|
readonly filename?: string;
|
|
70
170
|
readonly language?: string;
|
|
71
171
|
readonly prompt?: string;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
readonly prompt
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
readonly
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
172
|
+
};
|
|
173
|
+
export type VolcengineTranscriptionInput = WireRecord & {
|
|
174
|
+
readonly audio: WireRecord;
|
|
175
|
+
readonly language?: string;
|
|
176
|
+
readonly prompt?: string;
|
|
177
|
+
};
|
|
178
|
+
export type DashScopeTranscriptionInput = WireRecord & {
|
|
179
|
+
readonly input: WireRecord;
|
|
180
|
+
readonly parameters?: WireRecord;
|
|
181
|
+
};
|
|
182
|
+
export type DashScopeVideoInput = WireRecord & {
|
|
183
|
+
readonly input: WireRecord;
|
|
184
|
+
readonly parameters: WireRecord;
|
|
185
|
+
};
|
|
186
|
+
export type VolcengineVideoInput = WireRecord & {
|
|
187
|
+
readonly content: readonly WireRecord[];
|
|
188
|
+
};
|
|
189
|
+
export type RealtimeInput = WireRecord & {
|
|
190
|
+
readonly session?: WireRecord;
|
|
83
191
|
readonly query?: Readonly<Record<string, string>>;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
readonly embedding: EmbeddingInput;
|
|
90
|
-
readonly rerank: RerankInput;
|
|
91
|
-
readonly "image-generation": ImageGenerationInput;
|
|
92
|
-
readonly "image-editing": ImageEditingInput;
|
|
93
|
-
readonly "speech-generation": SpeechGenerationInput;
|
|
94
|
-
readonly transcription: TranscriptionInput;
|
|
95
|
-
readonly "video-generation": VideoGenerationInput;
|
|
96
|
-
readonly realtime: RealtimeInput;
|
|
97
|
-
}
|
|
98
|
-
/** Input seen by an implementation after registry lookup has validated the protocol. */
|
|
99
|
-
export type ProtocolRequest<M extends ModelType> = {
|
|
100
|
-
[K in M]: PreparationBase<K, string, InputByModelType[K]>;
|
|
192
|
+
};
|
|
193
|
+
export type ProtocolInputFor<M extends ModelType, P extends string> = M extends "text-generation" | "multimodal-generation" ? P extends "openai-chat-completions" ? OpenAIChatInput : P extends "openai-responses" ? OpenAIResponsesInput : P extends "anthropic-messages" ? AnthropicInput : P extends "gemini-generate-content" ? GeminiInput : never : M extends "embedding" ? EmbeddingInput : M extends "rerank" ? RerankInput : M extends "image-generation" ? P extends "openai-images" ? ImageGenerationInput : P extends "gemini-generate-content" ? GeminiInput : P extends "dashscope-images" | "dashscope-images-async" ? DashScopeImageInput : P extends "volcengine-images" ? VolcengineImageInput : P extends "zhipu-images" | "zhipu-images-async" ? ZhipuImageInput : P extends "kling-images" ? KlingImageInput : P extends "bfl-images" ? BflImageInput : P extends "minimax-images" ? MiniMaxImageInput : P extends "xfyun-images" ? XfyunImageInput : P extends "xfyun-hidream" ? XfyunHiDreamInput : never : M extends "image-editing" ? P extends "openai-images" ? ImageEditingInput : P extends "gemini-generate-content" ? GeminiInput : P extends "dashscope-images" | "dashscope-images-async" ? DashScopeImageInput : P extends "volcengine-images" ? VolcengineImageEditingInput : P extends "kling-images" ? KlingImageEditingInput : P extends "bfl-images" ? BflImageInput : P extends "minimax-images" ? MiniMaxImageEditingInput : P extends "xfyun-hidream" ? XfyunHiDreamInput : never : M extends "speech-generation" ? P extends "openai-audio" ? OpenAISpeechInput : P extends "dashscope-audio" ? DashScopeSpeechInput : P extends "volcengine-audio" ? VolcengineSpeechInput : P extends "xfyun-audio" ? XfyunSpeechInput : P extends "zhipu-audio" ? ZhipuSpeechInput : P extends "minimax-audio" ? MiniMaxSpeechInput : never : M extends "transcription" ? P extends "openai-audio" | "zhipu-audio" ? OpenAITranscriptionInput : P extends "volcengine-audio" ? VolcengineTranscriptionInput : P extends "dashscope-transcription" ? DashScopeTranscriptionInput : never : M extends "video-generation" ? P extends "dashscope-video" ? DashScopeVideoInput : P extends "volcengine-video" ? VolcengineVideoInput : never : M extends "realtime" ? RealtimeInput : never;
|
|
194
|
+
/** Request view used by a protocol implementation after registry lookup. */
|
|
195
|
+
export type ProtocolRequest<M extends ModelType, P extends string = string> = {
|
|
196
|
+
[K in M]: PreparationBase<K, P, ProtocolInputFor<K, P>>;
|
|
101
197
|
}[M];
|
|
102
|
-
/** Every public operation derives its
|
|
198
|
+
/** Every public operation derives its protocol-native input from the registry. */
|
|
103
199
|
export type RequestFor<M extends ModelType> = {
|
|
104
|
-
[K in M]:
|
|
200
|
+
[K in M]: {
|
|
201
|
+
[P in ProtocolFor<K>]: PreparationBase<K, P, ProtocolInputFor<K, P>>;
|
|
202
|
+
}[ProtocolFor<K>];
|
|
105
203
|
}[M];
|
|
106
204
|
export type RequestPreparation = RequestFor<ModelType>;
|
|
107
205
|
//# sourceMappingURL=request-types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request-types.d.ts","sourceRoot":"","sources":["../src/request-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"request-types.d.ts","sourceRoot":"","sources":["../src/request-types.ts"],"names":[],"mappings":"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"}
|