-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.09 KB
/
.env.example
File metadata and controls
27 lines (22 loc) · 1.09 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
# AI Provider 配置
# 复制此文件为 .env 并填入你的 API Key
# Moonshot API Key(必需)
# 获取方式:https://platform.moonshot.cn/
MOONSHOT_API_KEY=your_moonshot_api_key_here
# 是否生成解题报告(可选,默认: false)
# true: 生成 SOLUTION_REPORT_{problem_id}.md 解题报告(用于 CI 每日一题 PR)
# false: 不生成报告(默认,节省 API token)
# 也可通过命令行参数 --report 临时开启
# AI_SOLVER_GENERATE_REPORT=false
# 是否强制尝试新解法(可选,默认: false)
# 当题目文件已存在时:
# true: 即使文件存在也尝试提供新的解法思路(会覆盖原有文件)
# false: 如果文件已存在则跳过(默认行为)
# AI_SOLVER_FORCE_NEW_SOLUTION=false
# 是否生成解题报告(可选,默认: false)
# true: 生成 SOLUTION_REPORT_{problem_id}.md 解题报告(用于 CI 每日一题 PR)
# false: 不生成报告(默认,节省 API token)
# 也可通过命令行参数 --report 临时开启
# AI_SOLVER_GENERATE_REPORT=false
# LeetCode Cookie
LEETCODE_COOKIE='csrftoken=xxx; LEETCODE_SESSION=xxx'