assemblyai-core-workflow-b

Featured

Execute AssemblyAI streaming transcription and LeMUR workflows. Use when implementing real-time speech-to-text, live captions, voice agents, or LLM-powered audio analysis with LeMUR. Trigger with phrases like "assemblyai streaming", "assemblyai real-time", "assemblyai live transcription", "assemblyai LeMUR", "assemblyai summarize audio".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# AssemblyAI Core Workflow B — Streaming & LeMUR ## Overview Two advanced workflows: (1) real-time streaming transcription via WebSocket for live captioning and voice agents, and (2) LeMUR for applying LLMs to transcripts — summarization, Q&A, action items, and custom tasks. ## Prerequisites - `assemblyai` package installed (`npm install assemblyai`) - API key configured in `ASSEMBLYAI_API_KEY` - For streaming: microphone or audio stream source ## Part 1: Real-Time Streaming Transcription ### Step 1: Basic Streaming Setup ```typescript import { AssemblyAI } from 'assemblyai'; const client = new AssemblyAI({ apiKey: process.env.ASSEMBLYAI_API_KEY!, }); const transcriber = client.streaming.createService({ // Model options: 'nova-3' (default), 'nova-3-pro' (highest accuracy) speech_model: 'nova-3', sample_rate: 16000, }); transcriber.on('open', ({ sessionId }) => { console.log('Session opened:', sessionId); }); transcriber.on('transcript', (message) => { // message_type: 'PartialTranscript' or 'FinalTranscript' if (message.message_type === 'FinalTranscript') { console.log('[Final]', message.text); } else { process.stdout.write(`\r[Partial] ${message.text}`); } }); transcriber.on('error', (error) => { console.error('Streaming error:', error); }); transcriber.on('close', (code, reason) => { console.log('Session closed:', code, reason); }); await transcriber.connect(); // Send audio chunks (16-bit PCM, 16kHz mono) // transcriber.sendAudio(...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

assemblyai-core-workflow-a

Execute AssemblyAI primary workflow: async transcription with audio intelligence. Use when transcribing audio/video files, enabling speaker diarization, sentiment analysis, entity detection, PII redaction, or content moderation. Trigger with phrases like "assemblyai transcribe", "assemblyai transcription", "transcribe audio", "speaker diarization assemblyai".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-hello-world

Create a minimal working AssemblyAI transcription example. Use when starting a new AssemblyAI integration, testing your setup, or learning basic transcription patterns. Trigger with phrases like "assemblyai hello world", "assemblyai example", "assemblyai quick start", "simple assemblyai transcription".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-common-errors

Diagnose and fix AssemblyAI common errors and exceptions. Use when encountering AssemblyAI errors, debugging failed transcriptions, or troubleshooting streaming and LeMUR issues. Trigger with phrases like "assemblyai error", "fix assemblyai", "assemblyai not working", "debug assemblyai", "transcription failed".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-reference-architecture

Implement AssemblyAI reference architecture with best-practice project layout. Use when designing new AssemblyAI transcription services, reviewing project structure, or building production-grade speech-to-text applications. Trigger with phrases like "assemblyai architecture", "assemblyai best practices", "assemblyai project structure", "how to organize assemblyai", "assemblyai design".

2,266 Updated today
jeremylongshore
AI & Automation Featured

deepgram-core-workflow-b

Implement real-time streaming transcription with Deepgram WebSocket. Use when building live transcription, voice interfaces, real-time captioning, or voice AI applications. Trigger: "deepgram streaming", "real-time transcription", "live transcription", "websocket transcription", "voice streaming", "deepgram live".

2,266 Updated today
jeremylongshore