- Added Jamendo API client ID to the environment configuration for music search. - Updated pnpm lock file to include new dependencies for enhanced functionality. - Integrated Plyr library for improved media playback experience. - Refactored ChatHeader, ChatInput, and ChatMessage components to utilize new styles and improve user interaction. - Enhanced CSS styles for path-glass elements to align with the new design system. Made-with: Cursor
26 lines
950 B
Bash
26 lines
950 B
Bash
# AIUI Development Environment
|
|
# Copy this file to .env.local and fill in your values
|
|
|
|
# AI Provider (OpenRouter - gives access to many models including free ones)
|
|
# Get your key at: https://openrouter.ai/keys
|
|
VITE_OPENROUTER_API_KEY=sk-or-your-key-here
|
|
|
|
# Anthropic Claude — use ONE of these:
|
|
# Option 1: OAuth token from Claude Code CLI (run: claude auth login)
|
|
VITE_ANTHROPIC_TOKEN=sk-ant-oat01-your-token-here
|
|
# Option 2: API key from console (https://console.anthropic.com/settings/keys)
|
|
VITE_ANTHROPIC_API_KEY=sk-ant-your-key-here
|
|
|
|
# TMDB API (free, fetches posters on-demand when images fail)
|
|
# Get your key at: https://www.themoviedb.org/settings/api
|
|
TMDB_API_KEY=your-tmdb-key-here
|
|
|
|
# Jamendo API (optional, extends music search - free 35k req/mo)
|
|
# Get your client_id at: https://devportal.jamendo.com/
|
|
JAMENDO_CLIENT_ID=your-jamendo-client-id
|
|
|
|
# Development flags
|
|
VITE_DEV_MODE=true
|
|
VITE_MOCK_MEDIA_SOURCES=true
|
|
VITE_DISABLE_CRYPTO=true
|