From bda4343c48a04983a82288c40cd118b7c3ed59c7 Mon Sep 17 00:00:00 2001 From: ghmark675 <188834327+ghmark675@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:28:36 +0800 Subject: [PATCH] chore: stop track config.py --- .gitignore | 1 + README.md | 2 ++ config.py => config.py.example | 0 3 files changed, 3 insertions(+) rename config.py => config.py.example (100%) diff --git a/.gitignore b/.gitignore index 76eea29..ac6c0e9 100644 --- a/.gitignore +++ b/.gitignore @@ -295,6 +295,7 @@ secrets.json *.key *.pem *.crt +config.py # API 密钥 api_keys.txt diff --git a/README.md b/README.md index 598ea3c..790579b 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,8 @@ playwright install chromium #### 4.1 配置API密钥 +复制一份 `config.py.example` 文件,命名为 `config.py` + 编辑 `config.py` 文件,填入您的API密钥(您也可以选择自己的模型、搜索代理,详情见config文件内): ```python diff --git a/config.py b/config.py.example similarity index 100% rename from config.py rename to config.py.example