Skip to main content

Type Alias: GatewayInferenceCreateTranscriptionResponseVerboseJson

type GatewayInferenceCreateTranscriptionResponseVerboseJson = {
[key: string]: unknown;
language: string;
duration: string | number;
text: string;
words?: GatewayInferenceTranscriptionWord[];
segments?: GatewayInferenceTranscriptionSegment[];
};

Defined in: src/models/ai-gateway-inference.ts:5587

Portkey CreateTranscriptionResponseVerboseJson; additive response fields are preserved.

Example​

`GatewayInferenceCreateTranscriptionResponseVerboseJsonSchema.parse(value);`

Indexable​

[key: string]: unknown

Properties​

language​

language: string;

Defined in: src/models/ai-gateway-inference.ts:5588


duration​

duration: string | number;

Defined in: src/models/ai-gateway-inference.ts:5589


text​

text: string;

Defined in: src/models/ai-gateway-inference.ts:5590


words?​

optional words?: GatewayInferenceTranscriptionWord[];

Defined in: src/models/ai-gateway-inference.ts:5591


segments?​

optional segments?: GatewayInferenceTranscriptionSegment[];

Defined in: src/models/ai-gateway-inference.ts:5592