| 123456789101112131415161718192021222324252627282930 |
- # API Base URL
- # This is the base URL for the backend API server
- # Default: http://localhost:8000
- VITE_API_BASE_URL=http://192.168.0.200:8000
- # Application Title
- # This will be displayed in the browser tab
- VITE_APP_TITLE=AX Document Editor
- # Debug Mode
- # Enable debug mode for development
- # Default: false
- VITE_DEBUG=false
- # AI Chat API Configuration
- # AI Platform API URL for chat completions (v1 - regular chat)
- VITE_AI_API_URL=http://114.242.25.27:3000/api/v1/chat/completions
- # AI Platform API Key
- # Get this from: 发布渠道 → API 访问 → 创建新 Key
- VITE_AI_API_KEY=XAgent-eVVoqEO7WJYwzCc5wQ8meEtIuyIQgHhxYvpd6fSwa7BwJW8CaBom4
- # Workflow API Configuration
- # Workflow API URL for document generation (v2 - with workflow)
- # This workflow connects to local backend export records API
- VITE_WORKFLOW_API_URL=http://114.242.25.27:3000/api/v2/chat/completions
- # Workflow API Key (same as AI API Key)
- VITE_WORKFLOW_API_KEY=XAgent-mWHBqQw06psUYRqx6PrHWiKdfY05ebt7I9drDBHzaG9QQesIkVEICj
|