chatTTS-openai-api
介绍
使用chatTTS实时语音合成开源模型封装成openai chatgpt兼容web接口
软件架构
使用uvicorn、fastapi、chatTTS等开源库实现高性能接口
更多介绍 AI语音模型专栏
核心代码
import os
import ChatTTS
import torch
import uvicorn
from fastapi import FastAPI, Security, HTTPException
使用chatTTS实时语音合成开源模型封装成openai chatgpt兼容web接口
使用uvicorn、fastapi、chatTTS等开源库实现高性能接口
更多介绍 AI语音模型专栏
import os
import ChatTTS
import torch
import uvicorn
from fastapi import FastAPI, Security, HTTPException