このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
modal-soft
/
mio-ai
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
Add elevenlabs platform
Define common types for elevenlabs.
master
TheoryOfNekomata
1年前
親
5a7d0fd4d1
コミット
1405d432ef
5個のファイルの変更
、
23行の追加
、
1行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+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',
}
書き込み
プレビュー
読み込み中…
キャンセル
保存