@speechall/sdk 1.0.0 → 2.1.0
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/.beads/README.md +81 -0
- package/.beads/config.yaml +62 -0
- package/.beads/issues.jsonl +47 -0
- package/.beads/metadata.json +4 -0
- package/.env.example +5 -0
- package/.fernignore +45 -0
- package/.gitattributes +3 -0
- package/.github/copilot-instructions.md +78 -0
- package/.github/workflows/auto-release-simple.yml.deprecated +106 -0
- package/.github/workflows/auto-release.yml +67 -0
- package/.github/workflows/ci.yml +41 -0
- package/.github/workflows/release.yml +57 -0
- package/AGENTS.md +94 -0
- package/CHANGELOG.md +65 -0
- package/CLAUDE.md +129 -0
- package/README.md +294 -155
- package/examples/CLAUDE.md +136 -0
- package/examples/advanced-options.ts +213 -0
- package/examples/basic-transcription.ts +66 -0
- package/examples/error-handling.ts +251 -0
- package/examples/list-models.ts +112 -0
- package/examples/remote-transcription.ts +60 -0
- package/fern/fern.config.json +4 -0
- package/fern/generators.yml +43 -0
- package/jest.config.js +11 -0
- package/package.json +26 -46
- package/regenerate.sh +45 -0
- package/scripts/fix-generated-code.sh +25 -0
- package/src/BaseClient.ts +82 -0
- package/src/Client.ts +30 -0
- package/src/api/errors/BadRequestError.ts +22 -0
- package/src/api/errors/GatewayTimeoutError.ts +22 -0
- package/src/api/errors/InternalServerError.ts +22 -0
- package/src/api/errors/NotFoundError.ts +22 -0
- package/src/api/errors/PaymentRequiredError.ts +22 -0
- package/src/api/errors/ServiceUnavailableError.ts +22 -0
- package/src/api/errors/TooManyRequestsError.ts +22 -0
- package/src/api/errors/UnauthorizedError.ts +22 -0
- package/src/api/errors/index.ts +8 -0
- package/src/api/index.ts +3 -0
- package/src/api/resources/index.ts +5 -0
- package/src/api/resources/replacementRules/client/Client.ts +148 -0
- package/src/api/resources/replacementRules/client/index.ts +1 -0
- package/src/api/resources/replacementRules/client/requests/CreateReplacementRulesetRequest.ts +25 -0
- package/src/api/resources/replacementRules/client/requests/index.ts +1 -0
- package/src/api/resources/replacementRules/index.ts +2 -0
- package/src/api/resources/replacementRules/types/CreateReplacementRulesetResponse.ts +6 -0
- package/src/api/resources/replacementRules/types/index.ts +1 -0
- package/src/api/resources/speechToText/client/Client.ts +275 -0
- package/src/api/resources/speechToText/client/index.ts +1 -0
- package/src/api/resources/speechToText/client/requests/RemoteTranscriptionConfiguration.ts +20 -0
- package/src/api/resources/speechToText/client/requests/TranscribeRequest.ts +26 -0
- package/src/api/resources/speechToText/client/requests/index.ts +2 -0
- package/src/api/resources/speechToText/index.ts +1 -0
- package/src/api/types/BaseTranscriptionConfiguration.ts +29 -0
- package/src/api/types/ErrorResponse.ts +11 -0
- package/src/api/types/ExactRule.ts +13 -0
- package/src/api/types/RegexGroupRule.ts +28 -0
- package/src/api/types/RegexRule.ts +28 -0
- package/src/api/types/ReplacementRule.ts +25 -0
- package/src/api/types/SpeechToTextModel.ts +90 -0
- package/src/api/types/TranscriptLanguageCode.ts +114 -0
- package/src/api/types/TranscriptOutputFormat.ts +18 -0
- package/src/api/types/TranscriptionDetailed.ts +19 -0
- package/src/api/types/TranscriptionModelIdentifier.ts +70 -0
- package/src/api/types/TranscriptionOnlyText.ts +11 -0
- package/src/api/types/TranscriptionProvider.ts +23 -0
- package/src/api/types/TranscriptionResponse.ts +8 -0
- package/src/api/types/TranscriptionSegment.ts +17 -0
- package/src/api/types/TranscriptionWord.ts +17 -0
- package/src/api/types/index.ts +16 -0
- package/src/auth/BearerAuthProvider.ts +37 -0
- package/src/auth/index.ts +1 -0
- package/src/core/auth/AuthProvider.ts +6 -0
- package/src/core/auth/AuthRequest.ts +9 -0
- package/src/core/auth/BasicAuth.ts +32 -0
- package/src/core/auth/BearerToken.ts +20 -0
- package/src/core/auth/NoOpAuthProvider.ts +8 -0
- package/src/core/auth/index.ts +5 -0
- package/src/core/base64.ts +27 -0
- package/src/core/exports.ts +2 -0
- package/src/core/fetcher/APIResponse.ts +23 -0
- package/src/core/fetcher/BinaryResponse.ts +34 -0
- package/src/core/fetcher/EndpointMetadata.ts +13 -0
- package/src/core/fetcher/EndpointSupplier.ts +14 -0
- package/src/core/fetcher/Fetcher.ts +391 -0
- package/src/core/fetcher/Headers.ts +93 -0
- package/src/core/fetcher/HttpResponsePromise.ts +116 -0
- package/src/core/fetcher/RawResponse.ts +61 -0
- package/src/core/fetcher/Supplier.ts +11 -0
- package/src/core/fetcher/createRequestUrl.ts +6 -0
- package/src/core/fetcher/getErrorResponseBody.ts +33 -0
- package/src/core/fetcher/getFetchFn.ts +3 -0
- package/src/core/fetcher/getHeader.ts +8 -0
- package/src/core/fetcher/getRequestBody.ts +20 -0
- package/src/core/fetcher/getResponseBody.ts +58 -0
- package/src/core/fetcher/index.ts +11 -0
- package/src/core/fetcher/makeRequest.ts +42 -0
- package/src/core/fetcher/requestWithRetries.ts +64 -0
- package/src/core/fetcher/signals.ts +26 -0
- package/src/core/file/exports.ts +1 -0
- package/src/core/file/file.ts +217 -0
- package/src/core/file/index.ts +2 -0
- package/src/core/file/types.ts +81 -0
- package/src/core/headers.ts +35 -0
- package/src/core/index.ts +7 -0
- package/src/core/json.ts +27 -0
- package/src/core/logging/exports.ts +19 -0
- package/src/core/logging/index.ts +1 -0
- package/src/core/logging/logger.ts +203 -0
- package/src/core/runtime/index.ts +1 -0
- package/src/core/runtime/runtime.ts +134 -0
- package/src/core/url/encodePathParam.ts +18 -0
- package/src/core/url/index.ts +3 -0
- package/src/core/url/join.ts +79 -0
- package/src/core/url/qs.ts +74 -0
- package/src/environments.ts +7 -0
- package/src/errors/SpeechallError.ts +58 -0
- package/src/errors/SpeechallTimeoutError.ts +13 -0
- package/src/errors/handleNonStatusCodeError.ts +37 -0
- package/src/errors/index.ts +2 -0
- package/src/exports.ts +1 -0
- package/src/index.ts +6 -0
- package/test-import.ts +17 -0
- package/tests/integration/api.test.ts +93 -0
- package/tests/unit/client.test.ts +91 -0
- package/tsconfig.json +20 -0
- package/dist/api.d.ts +0 -501
- package/dist/api.d.ts.map +0 -1
- package/dist/api.js +0 -610
- package/dist/base.d.ts +0 -32
- package/dist/base.d.ts.map +0 -1
- package/dist/base.js +0 -35
- package/dist/common.d.ts +0 -14
- package/dist/common.d.ts.map +0 -1
- package/dist/common.js +0 -91
- package/dist/configuration.d.ts +0 -23
- package/dist/configuration.d.ts.map +0 -1
- package/dist/configuration.js +0 -25
- package/dist/esm/api.js +0 -592
- package/dist/esm/base.js +0 -27
- package/dist/esm/common.js +0 -79
- package/dist/esm/configuration.js +0 -21
- package/dist/esm/example.js +0 -131
- package/dist/esm/index.js +0 -2
- package/dist/example.d.ts +0 -3
- package/dist/example.d.ts.map +0 -1
- package/dist/example.js +0 -133
- package/dist/index.d.ts +0 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -18
package/dist/api.d.ts
DELETED
|
@@ -1,501 +0,0 @@
|
|
|
1
|
-
import type { Configuration } from './configuration';
|
|
2
|
-
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
3
|
-
import type { RequestArgs } from './base';
|
|
4
|
-
import { BaseAPI } from './base';
|
|
5
|
-
export interface BaseTranscriptionConfiguration {
|
|
6
|
-
'model': TranscriptionModelIdentifier;
|
|
7
|
-
'language'?: TranscriptLanguageCode;
|
|
8
|
-
'output_format'?: TranscriptOutputFormat;
|
|
9
|
-
'ruleset_id'?: string;
|
|
10
|
-
'punctuation'?: boolean;
|
|
11
|
-
'timestamp_granularity'?: BaseTranscriptionConfigurationTimestampGranularityEnum;
|
|
12
|
-
'diarization'?: boolean;
|
|
13
|
-
'initial_prompt'?: string;
|
|
14
|
-
'temperature'?: number;
|
|
15
|
-
'smart_format'?: boolean;
|
|
16
|
-
'speakers_expected'?: number;
|
|
17
|
-
'custom_vocabulary'?: Array<string>;
|
|
18
|
-
}
|
|
19
|
-
export declare const BaseTranscriptionConfigurationTimestampGranularityEnum: {
|
|
20
|
-
readonly Word: "word";
|
|
21
|
-
readonly Segment: "segment";
|
|
22
|
-
};
|
|
23
|
-
export type BaseTranscriptionConfigurationTimestampGranularityEnum = typeof BaseTranscriptionConfigurationTimestampGranularityEnum[keyof typeof BaseTranscriptionConfigurationTimestampGranularityEnum];
|
|
24
|
-
export interface CreateReplacementRuleset201Response {
|
|
25
|
-
'id': string;
|
|
26
|
-
}
|
|
27
|
-
export interface CreateReplacementRulesetRequest {
|
|
28
|
-
'name': string;
|
|
29
|
-
'rules': Array<ReplacementRule>;
|
|
30
|
-
}
|
|
31
|
-
export interface ErrorResponse {
|
|
32
|
-
[key: string]: any;
|
|
33
|
-
'message': string;
|
|
34
|
-
}
|
|
35
|
-
export interface ExactRule {
|
|
36
|
-
'kind': ExactRuleKindEnum;
|
|
37
|
-
'search': string;
|
|
38
|
-
'replacement': string;
|
|
39
|
-
'caseSensitive'?: boolean;
|
|
40
|
-
}
|
|
41
|
-
export declare const ExactRuleKindEnum: {
|
|
42
|
-
readonly Exact: "exact";
|
|
43
|
-
};
|
|
44
|
-
export type ExactRuleKindEnum = typeof ExactRuleKindEnum[keyof typeof ExactRuleKindEnum];
|
|
45
|
-
export declare const OpenAIAudioResponseFormat: {
|
|
46
|
-
readonly Json: "json";
|
|
47
|
-
readonly Text: "text";
|
|
48
|
-
readonly Srt: "srt";
|
|
49
|
-
readonly VerboseJson: "verbose_json";
|
|
50
|
-
readonly Vtt: "vtt";
|
|
51
|
-
};
|
|
52
|
-
export type OpenAIAudioResponseFormat = typeof OpenAIAudioResponseFormat[keyof typeof OpenAIAudioResponseFormat];
|
|
53
|
-
export interface OpenAICreateTranscriptionResponseJson {
|
|
54
|
-
'text': string;
|
|
55
|
-
}
|
|
56
|
-
export interface OpenAICreateTranscriptionResponseVerboseJson {
|
|
57
|
-
'language': string;
|
|
58
|
-
'duration': number;
|
|
59
|
-
'text': string;
|
|
60
|
-
'words'?: Array<OpenAITranscriptionWord>;
|
|
61
|
-
'segments'?: Array<OpenAITranscriptionSegment>;
|
|
62
|
-
}
|
|
63
|
-
export interface OpenAICreateTranslationRequestModel {
|
|
64
|
-
}
|
|
65
|
-
export interface OpenAICreateTranslationResponseJson {
|
|
66
|
-
'text': string;
|
|
67
|
-
}
|
|
68
|
-
export interface OpenAICreateTranslationResponseVerboseJson {
|
|
69
|
-
'language': string;
|
|
70
|
-
'duration': string;
|
|
71
|
-
'text': string;
|
|
72
|
-
'segments'?: Array<OpenAITranscriptionSegment>;
|
|
73
|
-
}
|
|
74
|
-
export interface OpenAITranscriptionSegment {
|
|
75
|
-
'id': number;
|
|
76
|
-
'seek': number;
|
|
77
|
-
'start': number;
|
|
78
|
-
'end': number;
|
|
79
|
-
'text': string;
|
|
80
|
-
'tokens': Array<number>;
|
|
81
|
-
'temperature': number;
|
|
82
|
-
'avg_logprob': number;
|
|
83
|
-
'compression_ratio': number;
|
|
84
|
-
'no_speech_prob': number;
|
|
85
|
-
}
|
|
86
|
-
export interface OpenAITranscriptionWord {
|
|
87
|
-
'word': string;
|
|
88
|
-
'start': number;
|
|
89
|
-
'end': number;
|
|
90
|
-
}
|
|
91
|
-
export type OpenaiCompatibleCreateTranscription200Response = OpenAICreateTranscriptionResponseJson | OpenAICreateTranscriptionResponseVerboseJson;
|
|
92
|
-
export type OpenaiCompatibleCreateTranslation200Response = OpenAICreateTranslationResponseJson | OpenAICreateTranslationResponseVerboseJson;
|
|
93
|
-
export interface RegexGroupRule {
|
|
94
|
-
'kind': RegexGroupRuleKindEnum;
|
|
95
|
-
'pattern': string;
|
|
96
|
-
'groupReplacements': {
|
|
97
|
-
[key: string]: string;
|
|
98
|
-
};
|
|
99
|
-
'flags'?: Array<RegexGroupRuleFlagsEnum>;
|
|
100
|
-
}
|
|
101
|
-
export declare const RegexGroupRuleKindEnum: {
|
|
102
|
-
readonly RegexGroup: "regex_group";
|
|
103
|
-
};
|
|
104
|
-
export type RegexGroupRuleKindEnum = typeof RegexGroupRuleKindEnum[keyof typeof RegexGroupRuleKindEnum];
|
|
105
|
-
export declare const RegexGroupRuleFlagsEnum: {
|
|
106
|
-
readonly I: "i";
|
|
107
|
-
readonly M: "m";
|
|
108
|
-
readonly S: "s";
|
|
109
|
-
readonly X: "x";
|
|
110
|
-
readonly U: "u";
|
|
111
|
-
};
|
|
112
|
-
export type RegexGroupRuleFlagsEnum = typeof RegexGroupRuleFlagsEnum[keyof typeof RegexGroupRuleFlagsEnum];
|
|
113
|
-
export interface RegexRule {
|
|
114
|
-
'kind': RegexRuleKindEnum;
|
|
115
|
-
'pattern': string;
|
|
116
|
-
'replacement': string;
|
|
117
|
-
'flags'?: Array<RegexRuleFlagsEnum>;
|
|
118
|
-
}
|
|
119
|
-
export declare const RegexRuleKindEnum: {
|
|
120
|
-
readonly Regex: "regex";
|
|
121
|
-
};
|
|
122
|
-
export type RegexRuleKindEnum = typeof RegexRuleKindEnum[keyof typeof RegexRuleKindEnum];
|
|
123
|
-
export declare const RegexRuleFlagsEnum: {
|
|
124
|
-
readonly I: "i";
|
|
125
|
-
readonly M: "m";
|
|
126
|
-
readonly S: "s";
|
|
127
|
-
readonly X: "x";
|
|
128
|
-
readonly U: "u";
|
|
129
|
-
};
|
|
130
|
-
export type RegexRuleFlagsEnum = typeof RegexRuleFlagsEnum[keyof typeof RegexRuleFlagsEnum];
|
|
131
|
-
export interface RemoteTranscriptionConfiguration {
|
|
132
|
-
'model': TranscriptionModelIdentifier;
|
|
133
|
-
'language'?: TranscriptLanguageCode;
|
|
134
|
-
'output_format'?: TranscriptOutputFormat;
|
|
135
|
-
'ruleset_id'?: string;
|
|
136
|
-
'punctuation'?: boolean;
|
|
137
|
-
'timestamp_granularity'?: RemoteTranscriptionConfigurationTimestampGranularityEnum;
|
|
138
|
-
'diarization'?: boolean;
|
|
139
|
-
'initial_prompt'?: string;
|
|
140
|
-
'temperature'?: number;
|
|
141
|
-
'smart_format'?: boolean;
|
|
142
|
-
'speakers_expected'?: number;
|
|
143
|
-
'custom_vocabulary'?: Array<string>;
|
|
144
|
-
'file_url': string;
|
|
145
|
-
'replacement_ruleset'?: Array<ReplacementRule>;
|
|
146
|
-
}
|
|
147
|
-
export declare const RemoteTranscriptionConfigurationTimestampGranularityEnum: {
|
|
148
|
-
readonly Word: "word";
|
|
149
|
-
readonly Segment: "segment";
|
|
150
|
-
};
|
|
151
|
-
export type RemoteTranscriptionConfigurationTimestampGranularityEnum = typeof RemoteTranscriptionConfigurationTimestampGranularityEnum[keyof typeof RemoteTranscriptionConfigurationTimestampGranularityEnum];
|
|
152
|
-
export type ReplacementRule = {
|
|
153
|
-
kind: 'exact';
|
|
154
|
-
} & ExactRule | {
|
|
155
|
-
kind: 'regex';
|
|
156
|
-
} & RegexRule | {
|
|
157
|
-
kind: 'regex_group';
|
|
158
|
-
} & RegexGroupRule;
|
|
159
|
-
export interface SpeechToTextModel {
|
|
160
|
-
'id': TranscriptionModelIdentifier;
|
|
161
|
-
'display_name': string;
|
|
162
|
-
'provider': TranscriptionProvider;
|
|
163
|
-
'description'?: string | null;
|
|
164
|
-
'cost_per_second_usd'?: number | null;
|
|
165
|
-
'is_available': boolean;
|
|
166
|
-
'supported_languages'?: Array<string> | null;
|
|
167
|
-
'punctuation'?: boolean | null;
|
|
168
|
-
'diarization'?: boolean | null;
|
|
169
|
-
'streamable'?: boolean | null;
|
|
170
|
-
'real_time_factor'?: number | null;
|
|
171
|
-
'max_duration_seconds'?: number | null;
|
|
172
|
-
'max_file_size_bytes'?: number | null;
|
|
173
|
-
'version'?: string | null;
|
|
174
|
-
'release_date'?: string | null;
|
|
175
|
-
'model_type'?: SpeechToTextModelModelTypeEnum | null;
|
|
176
|
-
'accuracy_tier'?: SpeechToTextModelAccuracyTierEnum | null;
|
|
177
|
-
'supported_audio_encodings'?: Array<string> | null;
|
|
178
|
-
'supported_sample_rates'?: Array<number> | null;
|
|
179
|
-
'speaker_labels'?: boolean | null;
|
|
180
|
-
'word_timestamps'?: boolean | null;
|
|
181
|
-
'confidence_scores'?: boolean | null;
|
|
182
|
-
'language_detection'?: boolean | null;
|
|
183
|
-
'custom_vocabulary_support'?: boolean | null;
|
|
184
|
-
'profanity_filtering'?: boolean | null;
|
|
185
|
-
'noise_reduction'?: boolean | null;
|
|
186
|
-
'supports_srt': boolean;
|
|
187
|
-
'supports_vtt': boolean;
|
|
188
|
-
'voice_activity_detection'?: boolean | null;
|
|
189
|
-
}
|
|
190
|
-
export declare const SpeechToTextModelModelTypeEnum: {
|
|
191
|
-
readonly General: "general";
|
|
192
|
-
readonly PhoneCall: "phone_call";
|
|
193
|
-
readonly Video: "video";
|
|
194
|
-
readonly CommandAndSearch: "command_and_search";
|
|
195
|
-
readonly Medical: "medical";
|
|
196
|
-
readonly Legal: "legal";
|
|
197
|
-
readonly Voicemail: "voicemail";
|
|
198
|
-
readonly Meeting: "meeting";
|
|
199
|
-
};
|
|
200
|
-
export type SpeechToTextModelModelTypeEnum = typeof SpeechToTextModelModelTypeEnum[keyof typeof SpeechToTextModelModelTypeEnum];
|
|
201
|
-
export declare const SpeechToTextModelAccuracyTierEnum: {
|
|
202
|
-
readonly Basic: "basic";
|
|
203
|
-
readonly Standard: "standard";
|
|
204
|
-
readonly Enhanced: "enhanced";
|
|
205
|
-
readonly Premium: "premium";
|
|
206
|
-
};
|
|
207
|
-
export type SpeechToTextModelAccuracyTierEnum = typeof SpeechToTextModelAccuracyTierEnum[keyof typeof SpeechToTextModelAccuracyTierEnum];
|
|
208
|
-
export declare const TranscriptLanguageCode: {
|
|
209
|
-
readonly Auto: "auto";
|
|
210
|
-
readonly En: "en";
|
|
211
|
-
readonly EnAu: "en_au";
|
|
212
|
-
readonly EnUk: "en_uk";
|
|
213
|
-
readonly EnUs: "en_us";
|
|
214
|
-
readonly Af: "af";
|
|
215
|
-
readonly Am: "am";
|
|
216
|
-
readonly Ar: "ar";
|
|
217
|
-
readonly As: "as";
|
|
218
|
-
readonly Az: "az";
|
|
219
|
-
readonly Ba: "ba";
|
|
220
|
-
readonly Be: "be";
|
|
221
|
-
readonly Bg: "bg";
|
|
222
|
-
readonly Bn: "bn";
|
|
223
|
-
readonly Bo: "bo";
|
|
224
|
-
readonly Br: "br";
|
|
225
|
-
readonly Bs: "bs";
|
|
226
|
-
readonly Ca: "ca";
|
|
227
|
-
readonly Cs: "cs";
|
|
228
|
-
readonly Cy: "cy";
|
|
229
|
-
readonly Da: "da";
|
|
230
|
-
readonly De: "de";
|
|
231
|
-
readonly El: "el";
|
|
232
|
-
readonly Es: "es";
|
|
233
|
-
readonly Et: "et";
|
|
234
|
-
readonly Eu: "eu";
|
|
235
|
-
readonly Fa: "fa";
|
|
236
|
-
readonly Fi: "fi";
|
|
237
|
-
readonly Fo: "fo";
|
|
238
|
-
readonly Fr: "fr";
|
|
239
|
-
readonly Gl: "gl";
|
|
240
|
-
readonly Gu: "gu";
|
|
241
|
-
readonly Ha: "ha";
|
|
242
|
-
readonly Haw: "haw";
|
|
243
|
-
readonly He: "he";
|
|
244
|
-
readonly Hi: "hi";
|
|
245
|
-
readonly Hr: "hr";
|
|
246
|
-
readonly Ht: "ht";
|
|
247
|
-
readonly Hu: "hu";
|
|
248
|
-
readonly Hy: "hy";
|
|
249
|
-
readonly Id: "id";
|
|
250
|
-
readonly Is: "is";
|
|
251
|
-
readonly It: "it";
|
|
252
|
-
readonly Ja: "ja";
|
|
253
|
-
readonly Jw: "jw";
|
|
254
|
-
readonly Ka: "ka";
|
|
255
|
-
readonly Kk: "kk";
|
|
256
|
-
readonly Km: "km";
|
|
257
|
-
readonly Kn: "kn";
|
|
258
|
-
readonly Ko: "ko";
|
|
259
|
-
readonly La: "la";
|
|
260
|
-
readonly Lb: "lb";
|
|
261
|
-
readonly Ln: "ln";
|
|
262
|
-
readonly Lo: "lo";
|
|
263
|
-
readonly Lt: "lt";
|
|
264
|
-
readonly Lv: "lv";
|
|
265
|
-
readonly Mg: "mg";
|
|
266
|
-
readonly Mi: "mi";
|
|
267
|
-
readonly Mk: "mk";
|
|
268
|
-
readonly Ml: "ml";
|
|
269
|
-
readonly Mn: "mn";
|
|
270
|
-
readonly Mr: "mr";
|
|
271
|
-
readonly Ms: "ms";
|
|
272
|
-
readonly Mt: "mt";
|
|
273
|
-
readonly My: "my";
|
|
274
|
-
readonly Ne: "ne";
|
|
275
|
-
readonly Nl: "nl";
|
|
276
|
-
readonly Nn: "nn";
|
|
277
|
-
readonly False: "false";
|
|
278
|
-
readonly Oc: "oc";
|
|
279
|
-
readonly Pa: "pa";
|
|
280
|
-
readonly Pl: "pl";
|
|
281
|
-
readonly Ps: "ps";
|
|
282
|
-
readonly Pt: "pt";
|
|
283
|
-
readonly Ro: "ro";
|
|
284
|
-
readonly Ru: "ru";
|
|
285
|
-
readonly Sa: "sa";
|
|
286
|
-
readonly Sd: "sd";
|
|
287
|
-
readonly Si: "si";
|
|
288
|
-
readonly Sk: "sk";
|
|
289
|
-
readonly Sl: "sl";
|
|
290
|
-
readonly Sn: "sn";
|
|
291
|
-
readonly So: "so";
|
|
292
|
-
readonly Sq: "sq";
|
|
293
|
-
readonly Sr: "sr";
|
|
294
|
-
readonly Su: "su";
|
|
295
|
-
readonly Sv: "sv";
|
|
296
|
-
readonly Sw: "sw";
|
|
297
|
-
readonly Ta: "ta";
|
|
298
|
-
readonly Te: "te";
|
|
299
|
-
readonly Tg: "tg";
|
|
300
|
-
readonly Th: "th";
|
|
301
|
-
readonly Tk: "tk";
|
|
302
|
-
readonly Tl: "tl";
|
|
303
|
-
readonly Tr: "tr";
|
|
304
|
-
readonly Tt: "tt";
|
|
305
|
-
readonly Uk: "uk";
|
|
306
|
-
readonly Ur: "ur";
|
|
307
|
-
readonly Uz: "uz";
|
|
308
|
-
readonly Vi: "vi";
|
|
309
|
-
readonly Yi: "yi";
|
|
310
|
-
readonly Yo: "yo";
|
|
311
|
-
readonly Zh: "zh";
|
|
312
|
-
};
|
|
313
|
-
export type TranscriptLanguageCode = typeof TranscriptLanguageCode[keyof typeof TranscriptLanguageCode];
|
|
314
|
-
export declare const TranscriptOutputFormat: {
|
|
315
|
-
readonly Text: "text";
|
|
316
|
-
readonly JsonText: "json_text";
|
|
317
|
-
readonly Json: "json";
|
|
318
|
-
readonly Srt: "srt";
|
|
319
|
-
readonly Vtt: "vtt";
|
|
320
|
-
};
|
|
321
|
-
export type TranscriptOutputFormat = typeof TranscriptOutputFormat[keyof typeof TranscriptOutputFormat];
|
|
322
|
-
export interface TranscriptionDetailed {
|
|
323
|
-
'id': string;
|
|
324
|
-
'text': string;
|
|
325
|
-
'language'?: string;
|
|
326
|
-
'duration'?: number;
|
|
327
|
-
'segments'?: Array<TranscriptionSegment>;
|
|
328
|
-
'words'?: Array<TranscriptionWord>;
|
|
329
|
-
'provider_metadata'?: {
|
|
330
|
-
[key: string]: any;
|
|
331
|
-
};
|
|
332
|
-
}
|
|
333
|
-
export declare const TranscriptionModelIdentifier: {
|
|
334
|
-
readonly AmazonTranscribe: "amazon.transcribe";
|
|
335
|
-
readonly AssemblyaiBest: "assemblyai.best";
|
|
336
|
-
readonly AssemblyaiNano: "assemblyai.nano";
|
|
337
|
-
readonly AssemblyaiSlam1: "assemblyai.slam-1";
|
|
338
|
-
readonly AssemblyaiUniversal: "assemblyai.universal";
|
|
339
|
-
readonly AzureStandard: "azure.standard";
|
|
340
|
-
readonly CloudflareWhisper: "cloudflare.whisper";
|
|
341
|
-
readonly CloudflareWhisperLargeV3Turbo: "cloudflare.whisper-large-v3-turbo";
|
|
342
|
-
readonly CloudflareWhisperTinyEn: "cloudflare.whisper-tiny-en";
|
|
343
|
-
readonly DeepgramBase: "deepgram.base";
|
|
344
|
-
readonly DeepgramBaseConversationalai: "deepgram.base-conversationalai";
|
|
345
|
-
readonly DeepgramBaseFinance: "deepgram.base-finance";
|
|
346
|
-
readonly DeepgramBaseGeneral: "deepgram.base-general";
|
|
347
|
-
readonly DeepgramBaseMeeting: "deepgram.base-meeting";
|
|
348
|
-
readonly DeepgramBasePhonecall: "deepgram.base-phonecall";
|
|
349
|
-
readonly DeepgramBaseVideo: "deepgram.base-video";
|
|
350
|
-
readonly DeepgramBaseVoicemail: "deepgram.base-voicemail";
|
|
351
|
-
readonly DeepgramEnhanced: "deepgram.enhanced";
|
|
352
|
-
readonly DeepgramEnhancedFinance: "deepgram.enhanced-finance";
|
|
353
|
-
readonly DeepgramEnhancedGeneral: "deepgram.enhanced-general";
|
|
354
|
-
readonly DeepgramEnhancedMeeting: "deepgram.enhanced-meeting";
|
|
355
|
-
readonly DeepgramEnhancedPhonecall: "deepgram.enhanced-phonecall";
|
|
356
|
-
readonly DeepgramNova: "deepgram.nova";
|
|
357
|
-
readonly DeepgramNovaGeneral: "deepgram.nova-general";
|
|
358
|
-
readonly DeepgramNovaPhonecall: "deepgram.nova-phonecall";
|
|
359
|
-
readonly DeepgramNova2: "deepgram.nova-2";
|
|
360
|
-
readonly DeepgramNova2Atc: "deepgram.nova-2-atc";
|
|
361
|
-
readonly DeepgramNova2Automotive: "deepgram.nova-2-automotive";
|
|
362
|
-
readonly DeepgramNova2Conversationalai: "deepgram.nova-2-conversationalai";
|
|
363
|
-
readonly DeepgramNova2Drivethru: "deepgram.nova-2-drivethru";
|
|
364
|
-
readonly DeepgramNova2Finance: "deepgram.nova-2-finance";
|
|
365
|
-
readonly DeepgramNova2General: "deepgram.nova-2-general";
|
|
366
|
-
readonly DeepgramNova2Medical: "deepgram.nova-2-medical";
|
|
367
|
-
readonly DeepgramNova2Meeting: "deepgram.nova-2-meeting";
|
|
368
|
-
readonly DeepgramNova2Phonecall: "deepgram.nova-2-phonecall";
|
|
369
|
-
readonly DeepgramNova2Video: "deepgram.nova-2-video";
|
|
370
|
-
readonly DeepgramNova2Voicemail: "deepgram.nova-2-voicemail";
|
|
371
|
-
readonly DeepgramNova3: "deepgram.nova-3";
|
|
372
|
-
readonly DeepgramNova3General: "deepgram.nova-3-general";
|
|
373
|
-
readonly DeepgramNova3Medical: "deepgram.nova-3-medical";
|
|
374
|
-
readonly DeepgramWhisper: "deepgram.whisper";
|
|
375
|
-
readonly DeepgramWhisperBase: "deepgram.whisper-base";
|
|
376
|
-
readonly DeepgramWhisperLarge: "deepgram.whisper-large";
|
|
377
|
-
readonly DeepgramWhisperMedium: "deepgram.whisper-medium";
|
|
378
|
-
readonly DeepgramWhisperSmall: "deepgram.whisper-small";
|
|
379
|
-
readonly DeepgramWhisperTiny: "deepgram.whisper-tiny";
|
|
380
|
-
readonly FalaiElevenlabsSpeechToText: "falai.elevenlabs-speech-to-text";
|
|
381
|
-
readonly FalaiSpeechToText: "falai.speech-to-text";
|
|
382
|
-
readonly FalaiWhisper: "falai.whisper";
|
|
383
|
-
readonly FalaiWizper: "falai.wizper";
|
|
384
|
-
readonly FireworksaiWhisperV3: "fireworksai.whisper-v3";
|
|
385
|
-
readonly FireworksaiWhisperV3Turbo: "fireworksai.whisper-v3-turbo";
|
|
386
|
-
readonly GladiaStandard: "gladia.standard";
|
|
387
|
-
readonly GoogleEnhanced: "google.enhanced";
|
|
388
|
-
readonly GoogleStandard: "google.standard";
|
|
389
|
-
readonly GeminiGemini25FlashPreview0520: "gemini.gemini-2.5-flash-preview-05-20";
|
|
390
|
-
readonly GeminiGemini25ProPreview0605: "gemini.gemini-2.5-pro-preview-06-05";
|
|
391
|
-
readonly GeminiGemini20Flash: "gemini.gemini-2.0-flash";
|
|
392
|
-
readonly GeminiGemini20FlashLite: "gemini.gemini-2.0-flash-lite";
|
|
393
|
-
readonly GroqDistilWhisperLargeV3En: "groq.distil-whisper-large-v3-en";
|
|
394
|
-
readonly GroqWhisperLargeV3: "groq.whisper-large-v3";
|
|
395
|
-
readonly GroqWhisperLargeV3Turbo: "groq.whisper-large-v3-turbo";
|
|
396
|
-
readonly IbmStandard: "ibm.standard";
|
|
397
|
-
readonly OpenaiWhisper1: "openai.whisper-1";
|
|
398
|
-
readonly OpenaiGpt4oTranscribe: "openai.gpt-4o-transcribe";
|
|
399
|
-
readonly OpenaiGpt4oMiniTranscribe: "openai.gpt-4o-mini-transcribe";
|
|
400
|
-
readonly RevaiMachine: "revai.machine";
|
|
401
|
-
readonly RevaiFusion: "revai.fusion";
|
|
402
|
-
readonly SpeechmaticsEnhanced: "speechmatics.enhanced";
|
|
403
|
-
readonly SpeechmaticsStandard: "speechmatics.standard";
|
|
404
|
-
};
|
|
405
|
-
export type TranscriptionModelIdentifier = typeof TranscriptionModelIdentifier[keyof typeof TranscriptionModelIdentifier];
|
|
406
|
-
export interface TranscriptionOnlyText {
|
|
407
|
-
'id': string;
|
|
408
|
-
'text': string;
|
|
409
|
-
}
|
|
410
|
-
export declare const TranscriptionProvider: {
|
|
411
|
-
readonly Amazon: "amazon";
|
|
412
|
-
readonly Assemblyai: "assemblyai";
|
|
413
|
-
readonly Azure: "azure";
|
|
414
|
-
readonly Cloudflare: "cloudflare";
|
|
415
|
-
readonly Deepgram: "deepgram";
|
|
416
|
-
readonly Falai: "falai";
|
|
417
|
-
readonly Fireworksai: "fireworksai";
|
|
418
|
-
readonly Gemini: "gemini";
|
|
419
|
-
readonly Gladia: "gladia";
|
|
420
|
-
readonly Google: "google";
|
|
421
|
-
readonly Groq: "groq";
|
|
422
|
-
readonly Ibm: "ibm";
|
|
423
|
-
readonly Openai: "openai";
|
|
424
|
-
readonly Revai: "revai";
|
|
425
|
-
readonly Speechmatics: "speechmatics";
|
|
426
|
-
};
|
|
427
|
-
export type TranscriptionProvider = typeof TranscriptionProvider[keyof typeof TranscriptionProvider];
|
|
428
|
-
export type TranscriptionResponse = TranscriptionDetailed | TranscriptionOnlyText;
|
|
429
|
-
export interface TranscriptionSegment {
|
|
430
|
-
'start'?: number;
|
|
431
|
-
'end'?: number;
|
|
432
|
-
'text'?: string;
|
|
433
|
-
'speaker'?: string;
|
|
434
|
-
'confidence'?: number;
|
|
435
|
-
}
|
|
436
|
-
export interface TranscriptionWord {
|
|
437
|
-
'start': number;
|
|
438
|
-
'end': number;
|
|
439
|
-
'word': string;
|
|
440
|
-
'speaker'?: string;
|
|
441
|
-
'confidence'?: number;
|
|
442
|
-
}
|
|
443
|
-
export declare const OpenAICompatibleSpeechToTextApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
444
|
-
openaiCompatibleCreateTranscription: (file: File, model: TranscriptionModelIdentifier, language?: string, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, timestampGranularities?: Array<OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
445
|
-
openaiCompatibleCreateTranslation: (file: File, model: OpenAICreateTranslationRequestModel, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
446
|
-
};
|
|
447
|
-
export declare const OpenAICompatibleSpeechToTextApiFp: (configuration?: Configuration) => {
|
|
448
|
-
openaiCompatibleCreateTranscription(file: File, model: TranscriptionModelIdentifier, language?: string, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, timestampGranularities?: Array<OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OpenaiCompatibleCreateTranscription200Response>>;
|
|
449
|
-
openaiCompatibleCreateTranslation(file: File, model: OpenAICreateTranslationRequestModel, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OpenaiCompatibleCreateTranslation200Response>>;
|
|
450
|
-
};
|
|
451
|
-
export declare const OpenAICompatibleSpeechToTextApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
452
|
-
openaiCompatibleCreateTranscription(file: File, model: TranscriptionModelIdentifier, language?: string, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, timestampGranularities?: Array<OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum>, options?: RawAxiosRequestConfig): AxiosPromise<OpenaiCompatibleCreateTranscription200Response>;
|
|
453
|
-
openaiCompatibleCreateTranslation(file: File, model: OpenAICreateTranslationRequestModel, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, options?: RawAxiosRequestConfig): AxiosPromise<OpenaiCompatibleCreateTranslation200Response>;
|
|
454
|
-
};
|
|
455
|
-
export declare class OpenAICompatibleSpeechToTextApi extends BaseAPI {
|
|
456
|
-
openaiCompatibleCreateTranscription(file: File, model: TranscriptionModelIdentifier, language?: string, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, timestampGranularities?: Array<OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OpenaiCompatibleCreateTranscription200Response, any>>;
|
|
457
|
-
openaiCompatibleCreateTranslation(file: File, model: OpenAICreateTranslationRequestModel, prompt?: string, responseFormat?: OpenAIAudioResponseFormat, temperature?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OpenaiCompatibleCreateTranslation200Response, any>>;
|
|
458
|
-
}
|
|
459
|
-
export declare const OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum: {
|
|
460
|
-
readonly Word: "word";
|
|
461
|
-
readonly Segment: "segment";
|
|
462
|
-
};
|
|
463
|
-
export type OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum = typeof OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum[keyof typeof OpenaiCompatibleCreateTranscriptionTimestampGranularitiesEnum];
|
|
464
|
-
export declare const ReplacementRulesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
465
|
-
createReplacementRuleset: (createReplacementRulesetRequest: CreateReplacementRulesetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
466
|
-
};
|
|
467
|
-
export declare const ReplacementRulesApiFp: (configuration?: Configuration) => {
|
|
468
|
-
createReplacementRuleset(createReplacementRulesetRequest: CreateReplacementRulesetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateReplacementRuleset201Response>>;
|
|
469
|
-
};
|
|
470
|
-
export declare const ReplacementRulesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
471
|
-
createReplacementRuleset(createReplacementRulesetRequest: CreateReplacementRulesetRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateReplacementRuleset201Response>;
|
|
472
|
-
};
|
|
473
|
-
export declare class ReplacementRulesApi extends BaseAPI {
|
|
474
|
-
createReplacementRuleset(createReplacementRulesetRequest: CreateReplacementRulesetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateReplacementRuleset201Response, any>>;
|
|
475
|
-
}
|
|
476
|
-
export declare const SpeechToTextApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
477
|
-
listSpeechToTextModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
478
|
-
transcribe: (model: TranscriptionModelIdentifier, body: File, language?: TranscriptLanguageCode, outputFormat?: TranscriptOutputFormat, rulesetId?: string, punctuation?: boolean, timestampGranularity?: TranscribeTimestampGranularityEnum, diarization?: boolean, initialPrompt?: string, temperature?: number, smartFormat?: boolean, speakersExpected?: number, customVocabulary?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
479
|
-
transcribeRemote: (remoteTranscriptionConfiguration: RemoteTranscriptionConfiguration, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
480
|
-
};
|
|
481
|
-
export declare const SpeechToTextApiFp: (configuration?: Configuration) => {
|
|
482
|
-
listSpeechToTextModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SpeechToTextModel>>>;
|
|
483
|
-
transcribe(model: TranscriptionModelIdentifier, body: File, language?: TranscriptLanguageCode, outputFormat?: TranscriptOutputFormat, rulesetId?: string, punctuation?: boolean, timestampGranularity?: TranscribeTimestampGranularityEnum, diarization?: boolean, initialPrompt?: string, temperature?: number, smartFormat?: boolean, speakersExpected?: number, customVocabulary?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranscriptionResponse>>;
|
|
484
|
-
transcribeRemote(remoteTranscriptionConfiguration: RemoteTranscriptionConfiguration, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranscriptionResponse>>;
|
|
485
|
-
};
|
|
486
|
-
export declare const SpeechToTextApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
487
|
-
listSpeechToTextModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<SpeechToTextModel>>;
|
|
488
|
-
transcribe(model: TranscriptionModelIdentifier, body: File, language?: TranscriptLanguageCode, outputFormat?: TranscriptOutputFormat, rulesetId?: string, punctuation?: boolean, timestampGranularity?: TranscribeTimestampGranularityEnum, diarization?: boolean, initialPrompt?: string, temperature?: number, smartFormat?: boolean, speakersExpected?: number, customVocabulary?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<TranscriptionResponse>;
|
|
489
|
-
transcribeRemote(remoteTranscriptionConfiguration: RemoteTranscriptionConfiguration, options?: RawAxiosRequestConfig): AxiosPromise<TranscriptionResponse>;
|
|
490
|
-
};
|
|
491
|
-
export declare class SpeechToTextApi extends BaseAPI {
|
|
492
|
-
listSpeechToTextModels(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpeechToTextModel[], any>>;
|
|
493
|
-
transcribe(model: TranscriptionModelIdentifier, body: File, language?: TranscriptLanguageCode, outputFormat?: TranscriptOutputFormat, rulesetId?: string, punctuation?: boolean, timestampGranularity?: TranscribeTimestampGranularityEnum, diarization?: boolean, initialPrompt?: string, temperature?: number, smartFormat?: boolean, speakersExpected?: number, customVocabulary?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TranscriptionResponse, any>>;
|
|
494
|
-
transcribeRemote(remoteTranscriptionConfiguration: RemoteTranscriptionConfiguration, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TranscriptionResponse, any>>;
|
|
495
|
-
}
|
|
496
|
-
export declare const TranscribeTimestampGranularityEnum: {
|
|
497
|
-
readonly Word: "word";
|
|
498
|
-
readonly Segment: "segment";
|
|
499
|
-
};
|
|
500
|
-
export type TranscribeTimestampGranularityEnum = typeof TranscribeTimestampGranularityEnum[keyof typeof TranscribeTimestampGranularityEnum];
|
|
501
|
-
//# sourceMappingURL=api.d.ts.map
|
package/dist/api.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../api.ts"],"names":[],"mappings":"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"}
|