You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
590 B

from pathlib import Path
# 阿里云中用来调用deepseek r1的密钥
API_KEY = "sk-01d13a39e09844038322108ecdbd1bbc"
# 固定配置项
MODEL_R1 = "deepseek-r1"
MODEL_V3 = "deepseek-v3"
MODEL_URL='https://dashscope.aliyuncs.com/compatible-mode/v1'
# 正确路径拼接方式
mdWorkingPath = Path(__file__).parent / 'md-file' / 'readme'
DEFAULT_TEMPLATE = mdWorkingPath / 'default.md' # 使用 / 运算符
DEFAULT_OUTPUT_DIR = mdWorkingPath / 'output' # 使用 / 运算符
# print(f"模板路径:{DEFAULT_TEMPLATE}")
# print(f"输出目录:{DEFAULT_OUTPUT_DIR}")