-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (41 loc) · 1.29 KB
/
.env.example
File metadata and controls
52 lines (41 loc) · 1.29 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
# LLM API密钥(必须设置)
# 请将您的API密钥替换为真实的密钥
# 支持的API提供商:OpenAI、阿里云通义千问等
AUTO_SKILL_API_KEY=your-api-key-here
# 使用的模型(可选)
# 默认值:gpt-3.5-turbo
# 其他选项:gpt-4、qwen-turbo、qwen-plus等
AUTO_SKILL_MODEL=gpt-3.5-turbo
# API基础URL(可选)
# 如果使用非OpenAI API,请设置此参数
# 示例:阿里云通义千问
# AUTO_SKILL_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
# 配置文件路径(可选)
# 默认:使用内置配置
# AUTO_SKILL_CONFIG_FILE=config.yaml
# 技能插件目录(可选)
# 默认:skills
# AUTO_SKILL_PLUGINS_DIR=skills
# 默认环境隔离级别(可选)
# 可选值:none, venv, custom
# 默认:none
# AUTO_SKILL_ISOLATION_LEVEL=none
# 虚拟环境目录(可选)
# 默认:venvs
# AUTO_SKILL_VENV_DIR=venvs
# 模板目录(可选)
# 默认:templates
# AUTO_SKILL_TEMPLATES_DIR=templates
# 调试模式(可选)
# 默认:false
# AUTO_SKILL_DEBUG=false
# 缓存目录(可选)
# 默认:cache
# AUTO_SKILL_CACHE_DIR=cache
# 日志级别(可选)
# 可选值:debug, info, warning, error
# 默认:info
# AUTO_SKILL_LOG_LEVEL=info
# 日志文件(可选)
# 默认:auto_skill.log
# AUTO_SKILL_LOG_FILE=auto_skill.log