
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@livekit/agents-plugin-baseten
Advanced tools
Node.js/TypeScript plugin for LiveKit Agents with Baseten-hosted models (LLM, STT, TTS).
cd packages/livekit-plugin-baseten
pnpm install
pnpm build
Create .env file:
BASETEN_API_KEY=your_api_key_here
BASETEN_MODEL_ID=your_llm_model_id
BASETEN_TTS_MODEL_ID=your_tts_model_id
BASETEN_STT_MODEL_ID=your_stt_model_id
import { LLM } from 'livekit-plugin-baseten'
const llm = new LLM({
model: 'openai/gpt-4o-mini',
apiKey: process.env.BASETEN_API_KEY
})
import { STT } from 'livekit-plugin-baseten'
const stt = new STT({
apiKey: process.env.BASETEN_API_KEY,
modelId: process.env.BASETEN_STT_MODEL_ID
})
const stream = stt.stream()
for await (const event of stream) {
// Handle speech events
}
import { TTS } from 'livekit-plugin-baseten'
const tts = new TTS({
apiKey: process.env.BASETEN_API_KEY,
modelEndpoint: 'your-model-endpoint-url'
})
const stream = tts.synthesize('Hello world')
for await (const frame of stream) {
// Process audio frames
}
pnpm test:llm-cli # Interactive LLM chat
pnpm test:tts-cli # TTS synthesis
pnpm test:stt-cli # STT with microphone
See TESTING.md for details.
pnpm build # Build
pnpm dev # Watch mode
pnpm typecheck # Type checking
pnpm lint # Linting
FAQs
Baseten plugin for LiveKit Node Agents
The npm package @livekit/agents-plugin-baseten receives a total of 6 weekly downloads. As such, @livekit/agents-plugin-baseten popularity was classified as not popular.
We found that @livekit/agents-plugin-baseten demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 42 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.