Skip to content

Commit eb8dafb

Browse files
committed
Light restructuring, wording changes, and cards in resources section for use unless other, specific resource types are added.
1 parent 4c98aac commit eb8dafb

File tree

1 file changed

+37
-10
lines changed
  • website/docs/main/compatibility-api/guides/voice/nodejs/realtime-streaming-to-openai

1 file changed

+37
-10
lines changed

website/docs/main/compatibility-api/guides/voice/nodejs/realtime-streaming-to-openai/index.mdx

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -883,6 +883,12 @@ All of this happens in real-time during the conversation.
883883
884884
## Technical Deep Dive
885885
886+
{/* Section reserved for future architectural explanations */}
887+
888+
---
889+
890+
## Audio Processing
891+
886892
### Audio Processing Pipeline
887893
888894
```mermaid
@@ -903,10 +909,6 @@ graph LR
903909
- **Latency**: Typically 150-300ms end-to-end
904910
- **Quality**: Depends on codec choice (G.711 vs PCM16)
905911
906-
---
907-
908-
## Audio Processing
909-
910912
### Codec Selection Guide
911913
912914
Choose the right audio codec for your use case:
@@ -1270,7 +1272,7 @@ DEBUG=openai-agents:* npm run dev
12701272
## Complete example
12711273

12721274
See the GitHub repo for a complete working example, including
1273-
weather and time function examples,
1275+
weather and time function usage,
12741276
error handling,
12751277
and a production Docker setup.
12761278

@@ -1285,11 +1287,36 @@ and a production Docker setup.
12851287

12861288
## Resources
12871289

1288-
### Documentation
1289-
- [SignalWire Call Fabric Documentation](/platform/call-fabric)
1290-
- [OpenAI Realtime API Guide](https://platform.openai.com/docs/guides/realtime)
1291-
- [cXML Reference](/compatibility-api/cxml)
1292-
- [@openai/agents SDK Documentation](https://www.npmjs.com/package/@openai/agents)
1290+
<CardGroup cols={2}>
1291+
<Card
1292+
title="SignalWire Call Fabric Documentation"
1293+
href="/platform/call-fabric"
1294+
icon={<MdCode />}
1295+
>
1296+
Learn about SignalWire's Call Fabric platform
1297+
</Card>
1298+
<Card
1299+
title="OpenAI Realtime API Guide"
1300+
href="https://platform.openai.com/docs/guides/realtime"
1301+
icon={<MdCode />}
1302+
>
1303+
Official documentation for the OpenAI Realtime API
1304+
</Card>
1305+
<Card
1306+
title="cXML Reference"
1307+
href="/compatibility-api/cxml"
1308+
icon={<MdCode />}
1309+
>
1310+
Complete reference for Compatibility XML
1311+
</Card>
1312+
<Card
1313+
title="@openai/agents SDK Documentation"
1314+
href="https://www.npmjs.com/package/@openai/agents"
1315+
icon={<MdCode />}
1316+
>
1317+
NPM package documentation for the OpenAI Agents SDK
1318+
</Card>
1319+
</CardGroup>
12931320

12941321
<!-- Links -->
12951322

0 commit comments

Comments
 (0)