gpt-sovits-sdk
Version:
Node.js SDK for GPT-SoVITS API
16 lines (15 loc) • 490 B
TypeScript
/**
* GPT-SoVITS Node.js SDK
* 基于fetch API实现的GPT-SoVITS API客户端
*/
export { GPTSoVITSClient } from './client';
export * from './types';
import { GPTSoVITSClient } from './client';
import { GPTSoVITSClientOptions } from './types';
/**
* 创建GPT-SoVITS客户端实例
* @param options 客户端配置选项
* @returns GPT-SoVITS客户端实例
*/
export declare function createClient(options?: GPTSoVITSClientOptions): GPTSoVITSClient;
export default GPTSoVITSClient;