forked from lioensky/VCPToolBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag-processor-config.env.example
More file actions
60 lines (47 loc) · 1.93 KB
/
tag-processor-config.env.example
File metadata and controls
60 lines (47 loc) · 1.93 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
# ============================================================
# VCP Tag处理器独立配置文件示例
# ============================================================
#
# 用途:为日记批量打Tag工具提供配置
# 使用:复制此文件为 config.env 并填写实际值
#
# ============================================================
# ------------------------------------------------------------
# [必需] API配置
# ------------------------------------------------------------
# API密钥(替换为你的实际密钥)
API_Key=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# API地址(不要包含/v1/chat/completions)
API_URL=https://api.openai.com
# ------------------------------------------------------------
# [推荐] Tag生成模型配置
# ------------------------------------------------------------
# 模型名称
# 【最佳推荐】Claude Sonnet 4 - 最准确的Tag提取
TagModel=claude-sonnet-4-20250514
# 或选择其他模型:
# TagModel=claude-sonnet-4.5-20250929 # 最新版Claude
# TagModel=gpt-4o # 速度快
# TagModel=gpt-4o-mini # 成本低
# 模型Token限制
TagModelMaxTokens=40000
TagModelMaxOutPutTokens=30000
# Tag生成提示词文件(相对于工具目录)
TagModelPrompt=TagMaster.txt
# ------------------------------------------------------------
# [可选] 其他配置
# ------------------------------------------------------------
# 调试模式(true/false)
DebugMode=false
# ============================================================
# 快速配置指南
# ============================================================
#
# 1. 复制此文件并重命名为 config.env
# 2. 填写 API_Key(你的API密钥)
# 3. 填写 API_URL(API服务地址)
# 4. 选择 TagModel(推荐 claude-sonnet-4-20250514)
# 5. 保存文件
# 6. 运行: node diary-tag-batch-processor.js ./你的日记文件夹
#
# ============================================================