.env.example 949 B

12345678910111213141516171819202122232425262728293031
  1. # API Base URL
  2. # This is the base URL for the backend API server
  3. # Default: http://localhost:8000
  4. VITE_API_BASE_URL=http://192.168.0.195:8000
  5. # Application Title
  6. # This will be displayed in the browser tab
  7. VITE_APP_TITLE=AX Document Editor
  8. # Debug Mode
  9. # Enable debug mode for development
  10. # Default: false
  11. VITE_DEBUG=false
  12. # AI Chat API Configuration
  13. # AI Platform API URL for chat completions (v1 - regular chat)
  14. VITE_AI_API_URL=http://114.242.25.27:3000/api/v1/chat/completions
  15. # AI Platform API Key
  16. # Get this from: 发布渠道 → API 访问 → 创建新 Key
  17. VITE_AI_API_KEY=your_api_key_here
  18. # Workflow API Configuration
  19. # Workflow API URL for document generation (v2 - with workflow)
  20. # This workflow connects to local backend export records API
  21. VITE_WORKFLOW_API_URL=http://114.242.25.27:3000/api/v2/chat/completions
  22. # Workflow API Key
  23. # Use the XAgent API key provided by the platform
  24. VITE_WORKFLOW_API_KEY=your_workflow_api_key_here