-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy path.env.example
More file actions
30 lines (26 loc) · 1.48 KB
/
Copy path.env.example
File metadata and controls
30 lines (26 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Netease Cloud Music API Base URL
# If running the API locally, it might be http://localhost:3000
# If using a deployed instance, use the full URL
VITE_NETEASE_API_BASE=http://localhost:3000
# KuGouMusicApi Base URL (Web only, optional)
# Keep empty by default. Electron uses its bundled in-process KuGouMusicApi module.
# For development you may point this at a self-hosted or temporary debug instance.
VITE_KUGOU_API_BASE=
# AI Provider
# Set to 'google' for Google Gemini (recommended for better JSON response),
# or 'openai' for OpenAI and other openai compatible APIs, like DeepSeek, Qwen, etc.
VITE_AI_PROVIDER=google
# Google Gemini API Key for AI features
# only needed if you want to use Google Gemini.
GEMINI_API_KEY=your_gemini_api_key_here
# OpenAI Compatible API
# if you want to use OpenAI or other openai compatible APIs, like DeepSeek, Qwen, etc. set VITE_AI_PROVIDER=openai and set the following variables.
# OPENAI_API_URL accepts either a base URL (for example https://api.deepseek.com or https://api.openai.com/v1)
# or a full chat completions endpoint.
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_API_URL=https://api.openai.com/v1
# OPENAI_API_MODEL is strongly recommended for compatible providers that require an explicit model name.
# For api.deepseek.com, the app defaults to deepseek-v4-flash if you leave this blank, but setting it explicitly is clearer.
OPENAI_API_MODEL=gpt-4o
# Optional. Accepts 0-2 and defaults to 0.7 when omitted or invalid.
OPENAI_API_TEMPERATURE=0.7