使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
modal-soft
/
mio-ai
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
Add elevenlabs platform
Define common types for elevenlabs.
master
TheoryOfNekomata
1年前
父节点
5a7d0fd4d1
当前提交
1405d432ef
共有
5 个文件被更改
,包括
23 次插入
和
1 次删除
分列视图
Diff 选项
显示统计
下载 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',
}
撰写
预览
正在加载...
取消
保存