This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
modal-soft
/
mio-ai
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
Add elevenlabs platform
Define common types for elevenlabs.
master
TheoryOfNekomata
пре 1 година
родитељ
5a7d0fd4d1
комит
1405d432ef
5 измењених фајлова
са
23 додато
и
1 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
README.md
+9
-0
src/platforms/elevenlabs/common.ts
+0
-0
src/platforms/elevenlabs/events.ts
+10
-0
src/platforms/elevenlabs/index.ts
+1
-1
src/platforms/openai/common.ts
+ 3
- 0
README.md
Прегледај датотеку
@@ -20,3 +20,6 @@ Many-in-one AI client.
- [ ] files
- [ ] fine-tunes
- [ ] moderations
* ElevenLabs
- [ ] TTS (stream)
- [ ] get voices
+ 9
- 0
src/platforms/elevenlabs/common.ts
Прегледај датотеку
@@ -0,0 +1,9 @@
export const enum ApiVersion {
V1 = 'v1',
}
export interface Configuration {
apiKey: string;
apiVersion: ApiVersion;
baseUrl?: string;
}
+ 0
- 0
src/platforms/elevenlabs/events.ts
Прегледај датотеку
+ 10
- 0
src/platforms/elevenlabs/index.ts
Прегледај датотеку
@@ -0,0 +1,10 @@
import { Configuration } from './common';
export * from './common';
export const PLATFORM_ID = 'elevenlabs' as const;
export interface PlatformConfig {
platform: typeof PLATFORM_ID;
platformConfiguration: Configuration;
}
+ 1
- 1
src/platforms/openai/common.ts
Прегледај датотеку
@@ -38,7 +38,7 @@ export class PlatformError extends Error {
}
}
export enum ApiVersion {
export
const
enum ApiVersion {
V1 = 'v1',
}
Write
Preview
Loading…
Откажи
Сачувај