Skip to content
Open
4 changes: 4 additions & 0 deletions public/__redirects
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,11 @@
/realtime/pricing/ /realtime/sfu/pricing/ 302
/realtime/changelog/ /realtime/sfu/changelog/ 302
/realtime/realtimekit/get-started/ /realtime/realtimekit/quickstart/ 302
/realtime/realtimekit/core/remote-participant/ /realtime/realtimekit/core/remote-participants/ 302
/realtime/realtimekit/ui-kit/meeting-lifecycle/ realtime/realtimekit/ui-kit/state-management/ 302
/realtime/realtimekit/core/video-background/ /realtime/realtimekit/core/video-effects/ 302
/realtime/realtimekit/voice-meetings/ /realtime/realtimekit/audio-calls/ 302
/realtime/realtimekit/core/manage-other-participants-in-a-session/ /realtime/realtimekit/core/manage-participants-in-a-session/ 302
/realtime/realtimekit/getting-started/ /realtime/realtimekit/quickstart/ 302
/realtime/introduction/ /realtime/realtimekit/introduction/ 302
/realtime/concepts/ /realtime/realtimekit/concepts/ 302
Expand Down
10 changes: 6 additions & 4 deletions src/components/realtimekit/RTKSDKSelector/RTKSDKSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ export default function SDKSelector({ disabledPlatforms }: SDKSelectorProps) {

return (
<>
<div className="flex flex-row gap-1 rounded-md bg-blue-100 p-2 text-blue-900 dark:bg-neutral-800 dark:text-neutral-300">
This page is not available for the <b>{disabledPlatformsString}</b>
platform.
</div>
{disabledPlatforms && (
<div className="flex flex-row gap-1 rounded-md bg-blue-100 p-2 text-blue-900 dark:bg-neutral-800 dark:text-neutral-300">
This page is not available for the <b>{disabledPlatformsString}</b>
platform.
</div>
)}
<div className="my-5 flex flex-col gap-0 rounded-md bg-blue-100 p-2 dark:bg-neutral-800">
<div className="flex w-full flex-row items-start justify-start gap-2">
{platforms.map((p) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
title: AI (Transcription and Summary)
slug: realtime/realtimekit/core/ai
sidebar:
order: 11
order: 10
---

RealtimeKit provides AI-powered features to enhance your meetings, including real-time transcription and automatic meeting summaries. These features help you capture important discussions and generate concise overviews of your meetings.
Expand Down Expand Up @@ -127,7 +127,7 @@
"customParticipantId": "abc123xyz",
"transcript": "Hello?",
"isPartialTranscript": true,
"date": "Wed Aug 07 2024 10:15:30 GMT+0530 (India Standard Time)"

Check warning on line 130 in src/content/docs/realtime/realtimekit/ai.mdx

View workflow job for this annotation

GitHub Actions / Semgrep

semgrep.style-guide-potential-date-year

Potential year found. Documentation should strive to represent universal truth, not something time-bound. (add [skip style guide checks] to commit message to skip)

Check warning on line 130 in src/content/docs/realtime/realtimekit/ai.mdx

View workflow job for this annotation

GitHub Actions / Semgrep

semgrep.style-guide-potential-date-month

Potential month found. Documentation should strive to represent universal truth, not something time-bound. (add [skip style guide checks] to commit message to skip)
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
---
title: Voice meetings
title: Audio Only Calls
pcx_content_type: concept
slug: realtime/realtimekit/voice-meetings
sidebar:
order: 9
---

RealtimeKit supports voice meetings, allowing you to build audio-only experiences such as audio rooms, support lines, or community hangouts.
RealtimeKit supports voice calls, allowing you to build audio-only experiences such as audio rooms, support lines, or community hangouts.
In these meetings, participants use their microphones and hear others, but cannot use their camera. Voice meetings reduce bandwidth requirements and focus on audio communication.

## How voice meetings work
## How Audio Calls Work

A participant’s meeting experience is determined by the **Preset** applied to that participant.
To run a voice meeting, ensure all participants join with a Preset that has meeting type set to `Voice`.
Expand All @@ -22,7 +21,7 @@ When a participant joins with a `Voice` meeting type Preset, they are considered

For detailed pricing information, refer to [Pricing](/realtime/realtimekit/pricing/).

## Building voice experiences
## Building Audio Experiences

You can build voice meeting experiences using either the UI Kit or the Core SDK.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import RTKSDKSelector from "~/components/realtimekit/RTKSDKSelector/RTKSDKSelect
import RTKCodeSnippet from "~/components/realtimekit/RTKCodeSnippet/RTKCodeSnippet.astro";
import { Render } from "~/components";

<RTKSDKSelector />

<Render file="realtimekit/web/breakout-room-preface" product="realtime" />

### Validate permissions
Expand Down Expand Up @@ -39,8 +41,6 @@ Before creating breakout rooms, validate the permissions of the current particip

### Create breakout rooms

<RTKSDKSelector />

<RTKCodeSnippet id="web-web-components">
<Render
file="realtimekit/web/breakout-room-creation-sdk-api"
Expand Down
Loading
Loading