| 4 commits | 49 files changed | 0 commit comments | 1 contributor |
|
|
feat: bootstrap Python project structure\n\n- pyproject.toml with FastAPI, YOLO, OpenCV, SQLite stack\n- src/sups_yolo modules: camera, preprocessing, models, core, data, training, api, web\n- config/example.json and config/local.json\n- tests/unit and tests/integration with pytest\n- CONTRIBUTING.md, .gitignore, data dirs\n- README tech stack and setup instructions | 65855d1 |
|
|
opencode config file | 19f3636 |
|
|
chore: add opencode.json for local ollama gemma4:12b-it-qat | 053c276 |
|
|
docs: add AGENTS.md, README, and architecture docs | 9007d68 |
| .gitignore 0 → 100644 |
|---|
| AGENTS.md 0 → 100644 |
|---|
| CONTRIBUTING.md 0 → 100644 |
|---|
| README.md |
|---|
| config/example.json 0 → 100644 |
|---|
| config/local.json 0 → 100644 |
|---|
| data/datasets/.gitkeep 0 → 100644 |
|---|
| data/models/.gitkeep 0 → 100644 |
|---|
| data/runs/.gitkeep 0 → 100644 |
|---|
| data/uploads/.gitkeep 0 → 100644 |
|---|
| docs/AI_AGENT_GUIDE.md 0 → 100644 |
|---|
| docs/ARC.drawio.xml 0 → 100644 |
|---|
| docs/architecture_components.md 0 → 100644 |
|---|
| docs/architecture_data_flow.md 0 → 100644 |
|---|
| docs/architecture_overview.md 0 → 100644 |
|---|
| docs/architecture_testing.md 0 → 100644 |
|---|
| docs/project_context.md 0 → 100644 |
|---|
| opencode.json 0 → 100644 |
|---|
| pyproject.toml 0 → 100644 |
|---|
| src/sups_yolo/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/api/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/api/app.py 0 → 100644 |
|---|
| src/sups_yolo/camera/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/camera/base.py 0 → 100644 |
|---|
| src/sups_yolo/camera/factory.py 0 → 100644 |
|---|
| src/sups_yolo/camera/fake.py 0 → 100644 |
|---|
| src/sups_yolo/camera/ip.py 0 → 100644 |
|---|
| src/sups_yolo/cli.py 0 → 100644 |
|---|
| src/sups_yolo/core/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/core/channel.py 0 → 100644 |
|---|
| src/sups_yolo/core/event.py 0 → 100644 |
|---|
| src/sups_yolo/data/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/data/store.py 0 → 100644 |
|---|
| src/sups_yolo/models/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/models/detector.py 0 → 100644 |
|---|
| src/sups_yolo/preprocessing/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/preprocessing/pipeline.py 0 → 100644 |
|---|
| src/sups_yolo/training/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/training/pipeline.py 0 → 100644 |
|---|
| src/sups_yolo/web/__init__.py 0 → 100644 |
|---|
| src/sups_yolo/web/static/htmx.min.js 0 → 100644 |
|---|
| src/sups_yolo/web/static/style.css 0 → 100644 |
|---|
| src/sups_yolo/web/templates/index.html 0 → 100644 |
|---|
| tests/__init__.py 0 → 100644 |
|---|
| tests/integration/__init__.py 0 → 100644 |
|---|
| tests/integration/test_api.py 0 → 100644 |
|---|
| tests/unit/test_camera.py 0 → 100644 |
|---|
| tests/unit/test_preprocessing.py 0 → 100644 |
|---|
| tests/unit/test_version.py 0 → 100644 |
|---|