From 811e175054ffc3b821d3c514bc4e0f824aa24e67 Mon Sep 17 00:00:00 2001 From: foxhui Date: Fri, 28 Nov 2025 17:53:40 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=81=9C=E6=AD=A2=E8=BF=BD=E8=B8=AA?= =?UTF-8?q?=20config.yaml=EF=BC=8C=E6=B7=BB=E5=8A=A0=20config.example.yaml?= =?UTF-8?q?=20=E6=A8=A1=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 config.yaml diff --git a/config.yaml b/config.yaml deleted file mode 100644 index 0850b3f..0000000 --- a/config.yaml +++ /dev/null @@ -1,30 +0,0 @@ -server: - # 服务器模式: 'openai' (标准兼容) 或 'queue' (流式队列) - type: queue - # 监听端口 - port: 3000 - # 鉴权密钥 (Bearer Token),请使用 genapikey.js 生成 - auth: sk-change-me-to-your-secure-key - -chrome: - # 浏览器可执行文件路径 (留空则使用Puppeteer默认) - # Windows系统示例 "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" - # Linux系统示例 "/usr/bin/chromium" - path: "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" - # 是否启用无头模式 - headless: false - # 是否启用 GPU (无GPU设备运行请使用false) - gpu: false - # 代理设置 - proxy: - # 是否启用代理 - enable: false - # 代理类型: 'http' 或 'socks5' - type: http - # 代理服务器地址 - host: 127.0.0.1 - # 代理端口 - port: 7890 - # 代理认证 (可选) - # user: username - # passwd: password