tflite-runtime has no wheels for Python 3.12+. Google replaced it with ai-edge-litert (same API). detector.py now tries ai-edge-litert first, falls back to tflite-runtime for older Python versions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
# vixy-vision Server Requirements
|
|
|
|
# Web framework
|
|
fastapi>=0.100.0
|
|
uvicorn[standard]>=0.22.0
|
|
|
|
# Camera / CV
|
|
opencv-python-headless>=4.8.0
|
|
|
|
# Config
|
|
python-dotenv>=1.0.0
|
|
|
|
# HTTP client (for posting events to collector)
|
|
httpx>=0.24.0
|
|
|
|
# Object detection (installed separately by setup.sh)
|
|
# pip install ai-edge-litert (Python 3.12+)
|
|
# pip install tflite-runtime (Python 3.9-3.11)
|