-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
61 lines (45 loc) · 1.97 KB
/
.env.example
File metadata and controls
61 lines (45 loc) · 1.97 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ==================== OpenAI 配置 ====================
# API Key (必须)
OPENAI_API_KEY="sk-..."
# API Base URL (可选)
# OPENAI_API_BASE="https://api.openai.com/v1"
# 模型名称 (可选)
# OPENAI_API_MODEL="gpt-3.5-turbo"
# ==================== Azure OpenAI 配置 ====================
# Azure OpenAI API Key
# AZURE_OPENAI_API_KEY=""
# Azure OpenAI Endpoint
# AZURE_OPENAI_ENDPOINT=""
# Azure OpenAI API Version
# AZURE_OPENAI_API_VERSION=""
# Azure OpenAI Deployment Name (Model)
# AZURE_OPENAI_API_MODEL=""
# ==================== 阿里云 DNS 配置 ====================
# 阿里云 Access Key ID (必须)
# 补充信息: 请在阿里云控制台 > AccessKey 管理中获取 Access Key ID 和 Access Key Secret
# 官方文档:https://www.alibabacloud.com/help/zh/ram/user-guide/create-an-accesskey-pair
ALIBABA_CLOUD_ACCESS_KEY_ID="LTAI..."
# 阿里云 Access Key Secret (必须)
ALIBABA_CLOUD_ACCESS_KEY_SECRET="..."
# 阿里云区域ID (可选,默认为 cn-hangzhou)
ALIBABA_CLOUD_REGION_ID="cn-hangzhou"
# ==================== 腾讯云 DNS 配置 ====================
# 腾讯云 Secret ID (必须)
# 补充信息: 请在腾讯云控制台 > API密钥管理 中获取以下信息
# https://console.cloud.tencent.com.cn/cam/capi
TENCENT_SECRET_ID="AKID..."
# 腾讯云 Secret Key (必须)
TENCENT_SECRET_KEY="..."
# 腾讯云区域ID (可选,默认为 ap-guangzhou)
TENCENT_REGION_ID="ap-guangzhou"
# ==================== Browser 配置 ====================
# 默认后端: playwright | selenium | chromium
BROWSER_DEFAULT_BACKEND="playwright"
# Chromium CDP URL (代理到 /chromium/)
# BROWSER_CHROMIUM_CDP_URL="http://localhost:8080/<path>/chromium/"
# Chromium Token(可选,会追加为 ?token=)
# BROWSER_CHROMIUM_TOKEN="..."
# Selenium Remote URL (代理到 /chromedriver/)
# BROWSER_SELENIUM_REMOTE_URL="http://localhost:8080/<path>/chromedriver/"
# Playwright URL (当前服务未暴露,预期 501)
# BROWSER_PLAYWRIGHT_URL="http://localhost:8080/<path>/playwright/"