|
1 | | -import { createAssemblyAIProxy } from "./assemblyai"; |
2 | | -import { transcribeWithAssemblyAI } from "./batch-assemblyai"; |
3 | | -import { transcribeWithDeepgram } from "./batch-deepgram"; |
4 | | -import { transcribeWithSoniox } from "./batch-soniox"; |
| 1 | +import { createAssemblyAIProxy, transcribeWithAssemblyAI } from "./assemblyai"; |
5 | 2 | import type { BatchParams, BatchProvider, BatchResponse } from "./batch-types"; |
6 | 3 | import { WsProxyConnection } from "./connection"; |
7 | | -import { createDeepgramProxy } from "./deepgram"; |
8 | | -import { createSonioxProxy } from "./soniox"; |
| 4 | +import { createDeepgramProxy, transcribeWithDeepgram } from "./deepgram"; |
| 5 | +import { createSonioxProxy, transcribeWithSoniox } from "./soniox"; |
9 | 6 |
|
10 | 7 | export { WsProxyConnection, type WsProxyOptions } from "./connection"; |
11 | 8 | export { normalizeWsData, type WsPayload } from "./utils"; |
12 | | -export { buildDeepgramUrl, createDeepgramProxy } from "./deepgram"; |
13 | | -export { buildAssemblyAIUrl, createAssemblyAIProxy } from "./assemblyai"; |
14 | | -export { buildSonioxUrl, createSonioxProxy } from "./soniox"; |
| 9 | +export { |
| 10 | + buildDeepgramUrl, |
| 11 | + createDeepgramProxy, |
| 12 | + transcribeWithDeepgram, |
| 13 | +} from "./deepgram"; |
| 14 | +export { |
| 15 | + buildAssemblyAIUrl, |
| 16 | + createAssemblyAIProxy, |
| 17 | + transcribeWithAssemblyAI, |
| 18 | +} from "./assemblyai"; |
| 19 | +export { |
| 20 | + buildSonioxUrl, |
| 21 | + createSonioxProxy, |
| 22 | + transcribeWithSoniox, |
| 23 | +} from "./soniox"; |
15 | 24 | export type { BatchParams, BatchProvider, BatchResponse } from "./batch-types"; |
16 | | -export { transcribeWithDeepgram } from "./batch-deepgram"; |
17 | | -export { transcribeWithAssemblyAI } from "./batch-assemblyai"; |
18 | | -export { transcribeWithSoniox } from "./batch-soniox"; |
19 | 25 |
|
20 | 26 | export const UPSTREAM_URL_HEADER = "x-owh-upstream-url"; |
21 | 27 | export const UPSTREAM_AUTH_HEADER = "x-owh-upstream-auth"; |
|
0 commit comments