system-prompts-and-models-o.../Nowhere_AI_Agent/env.example
dopeuni444 d43632a49a Removes outdated prompt files
Removes the `Chat Prompt.txt`, `VSCode Agent/Prompt.txt`, `Warp.dev/Prompt.txt`, and `v0 Prompts and Tools/Prompt.txt` files.

These files likely contain outdated prompts or configurations that are no longer needed in the current project. Removing them helps to clean up the codebase and prevent potential confusion or conflicts.
2025-07-31 01:45:01 +04:00

48 lines
1020 B
Plaintext

# Nowhere AI Agent Environment Configuration
# Server Configuration
PORT=3001
NODE_ENV=development
FRONTEND_URL=http://localhost:3000
# Database Configuration
REDIS_URL=redis://localhost:6379
POSTGRES_URL=postgresql://localhost:5432/nowhere_db
# Security Configuration
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
JWT_EXPIRES_IN=24h
# AI Model Configuration
OPENAI_API_KEY=your-openai-api-key
ANTHROPIC_API_KEY=your-anthropic-api-key
GOOGLE_AI_API_KEY=your-google-ai-api-key
# Logging Configuration
LOG_LEVEL=info
LOG_FILE_PATH=./logs
# Rate Limiting
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX_REQUESTS=100
VOICE_RATE_LIMIT_MAX_REQUESTS=20
# Voice Configuration
VOICE_ENABLED=true
VOICE_LANGUAGE=en-US
VOICE_MODE=brief
# Memory Configuration
MEMORY_ENABLED=true
MEMORY_MAX_ITEMS=100
MEMORY_RETENTION_DAYS=30
# Autopilot Configuration
AUTOPILOT_ENABLED=true
AUTOPILOT_SAFETY_CHECKS=true
AUTOPILOT_MAX_ACTIONS=10
# Development Configuration
DEBUG=true
ENABLE_MOCK_AI=true
ENABLE_MOCK_VOICE=true