- Delete app/label_tool.py (Streamlit UI retired; Vue SPA is sole UI) - Extract _strip_html and _extract_body into app/utils.py (stdlib-only, reusable) - Update tests/test_label_tool.py import to app.utils - Rename start-api/stop-api/restart-api/open-api → start/stop/restart/open in manage.sh - Remove STREAMLIT variable and all Streamlit-specific case blocks from manage.sh - Update manage.sh usage section to reflect Vue+FastAPI-only commands - Add data/sft_candidates.jsonl and data/sft_approved.jsonl to .gitignore - Add sft.bench_results_dir key to config/label_tool.yaml.example
22 lines
413 B
Text
22 lines
413 B
Text
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
.coverage
|
|
*.egg-info/
|
|
|
|
# Secrets and personal data
|
|
config/label_tool.yaml
|
|
|
|
# Data files (user-generated, not for version control)
|
|
data/email_score.jsonl
|
|
data/email_label_queue.jsonl
|
|
data/email_compare_sample.jsonl
|
|
data/sft_candidates.jsonl
|
|
data/sft_approved.jsonl
|
|
|
|
# Conda/pip artifacts
|
|
.env
|
|
|
|
# Claude context — BSL 1.1, keep out of version control
|
|
CLAUDE.md
|
|
docs/superpowers/
|