26 lines
840 B
Plaintext
26 lines
840 B
Plaintext
# LiveKit API Configuration
|
|
LIVEKIT_API_KEY=YOUR_API_KEY
|
|
LIVEKIT_API_SECRET=YOUR_API_SECRET
|
|
|
|
# Public configuration
|
|
NEXT_PUBLIC_LIVEKIT_URL=wss://YOUR_LIVEKIT_URL
|
|
|
|
# Application Configuration
|
|
NEXT_PUBLIC_APP_CONFIG="
|
|
title: 'LiveKit Agents Playground'
|
|
description: 'A virtual workbench for your multimodal AI agents.'
|
|
github_link: 'https://github.com/livekit/agents-playground'
|
|
video_fit: 'contain' # 'contain' or 'cover'
|
|
settings:
|
|
editable: true # Should the user be able to edit settings in-app
|
|
theme_color: 'cyan'
|
|
chat: true # Enable or disable chat feature
|
|
outputs:
|
|
audio: true # Enable or disable audio output
|
|
video: true # Enable or disable video output
|
|
inputs:
|
|
mic: true # Enable or disable microphone input
|
|
camera: true # Enable or disable camera input
|
|
sip: true # Enable or disable SIP input
|
|
"
|