Skip to content

AI

Last updated View as MarkdownAgent setup

RealtimeKit provides AI-powered features using Cloudflare's AI infrastructure to enhance your meetings with transcription and summarization capabilities.

Available features

Feature Description
Transcription Real-time and post-meeting speech-to-text
Summary AI-generated meeting summaries

Quick start

Turn on post-meeting transcription and automatic summaries when creating a meeting:

{
	"title": "Team Standup",
	"transcribe_on_end": true,
	"summarize_on_end": true,
	"ai_config": {
		"transcription": {
			"language": "en"
		},
		"summarization": {
			"word_limit": 500,
			"text_format": "markdown",
			"summary_type": "team_meeting"
		}
	}
}

Use transcribe_on_end for post-meeting transcripts. Use summarize_on_end for AI-generated summaries. For real-time transcription, make sure participants have transcription_enabled: true in their preset.

Storage and retention

  • Transcripts and summaries are stored for 7 days after the meeting ends
  • Files are stored in R2 with presigned URLs for secure access
  • Delivered via webhooks or REST API

Was this helpful?