gitextract__b835fml/ ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── AGENTS.md ├── Backend/ │ ├── db.py │ ├── gpt.py │ ├── logstream.py │ ├── main.py │ ├── models.py │ ├── pipeline.py │ ├── repository.py │ ├── search.py │ ├── tiktokvoice.py │ ├── utils.py │ ├── video.py │ ├── worker.py │ └── youtube.py ├── CLAUDE.md ├── Dockerfile ├── Frontend/ │ ├── app.js │ └── index.html ├── LICENSE ├── README.md ├── docker-compose.yml ├── docs/ │ ├── README.md │ ├── architecture.md │ ├── configuration.md │ ├── docker.md │ ├── quickstart.md │ ├── testing.md │ └── troubleshooting.md ├── pyproject.toml ├── setup.sh └── tests/ ├── conftest.py ├── test_api_jobs.py ├── test_api_misc.py ├── test_repository.py ├── test_utils.py └── test_worker.py