7d50878c7d
新机制: - web_search.py按优先级: 缓存→Bing API→Bing抓取 - search_cache.json由opencode webfetch手动填充(不依赖搜索引擎) - 搜索失效不影响采集器(LLM直接生成选题) - .gitignore移除search_cache.json(应被版本追踪)
62 lines
786 B
Plaintext
62 lines
786 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
.env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.venv
|
|
*.pot
|
|
|
|
# Platform logs
|
|
platform/data/*.db
|
|
platform/logs/
|
|
automation/logs/
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OpenClaw
|
|
memory/
|
|
sessions/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
.cache/
|
|
|
|
# Project specific
|
|
automation/data/drafts/*
|
|
!automation/data/drafts/.gitkeep
|
|
automation/data/releases/*
|
|
!automation/data/releases/.gitkeep
|
|
automation/data/published/*
|
|
!automation/data/published/.gitkeep
|
|
content/published/*
|
|
!content/published/.gitkeep
|
|
automation/data/outlines/
|
|
automation/data/research/
|
|
automation/data/sustainability_raw/
|
|
automation/images/generated/
|
|
data/*.db
|