> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## API Explorer 中的音频流功能

在 API Explorer 中添加了直接播放音频流的支持。此功能使您能够在不离开文档的情况下测试音频端点。

在 ElevenLabs 的 [API Explorer](https://elevenlabs.io/docs/api-reference/text-to-speech/convert?playground=/docs/api-reference/text-to-speech/convert-as-stream) 中实时查看，让用户测试文本转语音端点并即时听到结果。

阅读文档

## 表单数据优化

增强了边缘函数中 URL 参数和表单数据的处理。文档 playground 现在更高效地处理复杂数据结构。

```typescript
const formConfig = {
  encoding: 'application/x-www-form-urlencoded',
  arrayFormat: 'brackets',
  allowNullables: true,
  sanitize: true,
  maxDepth: 5
}
```

阅读文档