> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aiapi.xiaoliu.fun/llms.txt
> Use this file to discover all available pages before exploring further.

# 文生语音

> 将文本转换为自然流畅的语音

# 音色列表

| **voice**  | **description**                        |
| :--------- | :------------------------------------- |
| A-SOUL贝拉   | 可爱元气的女声                                |
| Rupa       | 温柔母性又带有狡黠可爱、活泼的少女声音                    |
| 东雪莲        |                                        |
| 丰川祥子       |                                        |
| 佐伊         | 古灵精怪的可爱小女孩                             |
| 初音未来       | 初音未来，日语版                               |
| 刻晴22       |                                        |
| 千早爱音       |                                        |
| 千早爱音中文     |                                        |
| 可爱少女       |                                        |
| 塑心\_public |                                        |
| 多情女声       |                                        |
| 女大学生       |                                        |
| 孤独摇滚-后藤独   |                                        |
| 学姐         |                                        |
| 宵崎奏        |                                        |
| 小凌潇        |                                        |
| 少女         |                                        |
| 弦卷-心       | 弦卷心的声音特点是极具能量与感染力的甜美声音，如同阳光般能瞬间点亮周围氛围。 |
| 御姐         |                                        |
| 御姐(新)      |                                        |
| 懒羊羊        |                                        |
| 提纳里        |                                        |
| 曼波(短视频)    |                                        |
| 柔情萝莉       |                                        |
| 永雏塔菲       |                                        |
| 派蒙         |                                        |
| 流浪者        |                                        |
| 温情学妹       |                                        |
| 温柔女生       |                                        |
| 温柔老师       |                                        |
| 温迪         |                                        |
| 爱丽丝        |                                        |
| 爱莉希雅       |                                        |
| 特蕾西娅       |                                        |
| 甜美主播       |                                        |
| 米浴         |                                        |
| 纳西妲        |                                        |
| 艾雅法拉       |                                        |
| 芙宁娜        |                                        |
| 赛马娘        |                                        |
| 长崎素世       |                                        |
| 风情御姐       |                                        |
| 高松灯        |                                        |
| 魈          |                                        |
| 黍\_public  |                                        |


## OpenAPI

````yaml /api-reference/audio/audio-speech.json POST /v1/audio/speech
openapi: 3.1.0
info:
  title: API
  version: 1.0.0
  description: API 文档，支持绘图、语音生成、视频生成、音乐生成等多种 AIGC 接口。
servers:
  - url: https://aiapi.xiaoliu.fun
    description: 生产服务器
security:
  - bearerAuth: []
paths:
  /v1/audio/speech:
    post:
      tags:
        - 语音生成
      summary: 文本转音频
      description: 将文本转换为自然流畅的语音
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                model:
                  type: string
                  description: 语音模型名称
                voice:
                  type: string
                  description: 语音角色名称
                input:
                  type: string
                  description: 要生成音频的文本
              required:
                - input
      responses:
        '200':
          description: 音频文件流
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````