> For the complete documentation index, see [llms.txt](https://docs.convai.com/api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.convai.com/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta.md).

# 实时 API（Beta）

{% hint style="danger" %}
Live API 仅在企业版方案中可用。
{% endhint %}

Convai 的 **Live API** 通过……实现用户与 AI 角色之间的实时、动态交互 **WebRTC**.\
这些 API 允许你的应用发送和接收 **音频**, **文本**以及其他上下文数据，使与 AI 角色的对话更加流畅且响应迅速。

一旦你的角色创建完成，Live API 会自动管理对话输入和上下文响应，确保在不同会话中保持自然且一致的行为。

#### **借助 Live API，你可以：**

* **进行实时对话** — 发送用户的文本或语音输入，并实时接收具有上下文感知的自然回复。
* **以文本和/或音频形式获取回复** — 同时支持基于文本的聊天和语音对话体验。
* **使用实时模型** — 集成低延迟模型（目前为 Google Realtime；OpenAI 支持即将推出），以实现高速对话性能。

该 **Live API** 充当你的 AI 角色与用户之间的桥梁，使双方能够在以下两种渠道上实现顺畅的双向通信 **文本** 和 **语音** 渠道——全部实时进行。

***

#### 从哪里开始

| 页面                                                                                                               | 涵盖内容                                |
| ---------------------------------------------------------------------------------------------------------------- | ----------------------------------- |
| [Connect API](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/connect-api.md)                         | 打开会话及其上可配置的所有选项                     |
| [回合生命周期和消息顺序](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/turn-lifecycle-and-message-ordering.md) | 机器人回合如何传递、你可以依赖的顺序，以及字段存在规则         |
| [响应约定与解析](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/response-contract-and-parsing.md)           | 语音、动作和情绪如何被分离——以及服务器会从口语回复中准确移除哪些内容 |
| [消息术语表](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/message-glossary.md)                          | 一目了然查看每种消息类型                        |
| [客户端到服务器的消息](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/client-to-server-messages.md)            | 你发送的消息                              |
| [服务器到客户端的消息](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/server-to-client-messages.md)            | 你接收的消息                              |
| [音频数据（通过数据通道）](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/audio-data-via-data-channel.md)        | 自定义音频处理                             |
| [指标](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/metrics.md)                                      | 性能指标与监控                             |

{% hint style="info" %}
如果你要从头编写客户端，请先阅读 [回合生命周期和消息顺序](/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta/turn-lifecycle-and-message-ordering.md) 。它解释了数据通道上的三种封装格式和顺序保证，这两者共同导致了大多数集成问题。
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.convai.com/api-docs/zh/api-can-kao/core-api-reference/live-apis-beta.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
