mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 11:16:31 +00:00
8ce40a9385
- Introduced `AIAvailabilityStatus` class to manage the availability status of AI models, including methods for setting status and logging messages. - Added `AIRecognitionConfig` class to encapsulate configuration parameters for AI recognition, with a static method for creating instances from dictionaries. - Implemented enums for AI availability states to enhance clarity and maintainability. - Updated related Cython files to support the new classes and ensure proper type handling. These changes aim to improve the structure and functionality of the AI model management system, facilitating better status tracking and configuration handling.
68 lines
747 B
Plaintext
68 lines
747 B
Plaintext
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
Thumbs.db
|
|
|
|
# Cython generated
|
|
*.c
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.whl
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
.env.*
|
|
*.env.local
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.tox/
|
|
|
|
# Binary / media / model files
|
|
*.onnx
|
|
*.mp4
|
|
*.avi
|
|
*.jpg
|
|
*.JPG
|
|
*.jpeg
|
|
*.png
|
|
*.mlpackage
|
|
*.mlmodel
|
|
|
|
# Standalone skill output (ephemeral, not part of project)
|
|
_standalone/
|
|
|
|
# MCP config with credentials (use .cursor/mcp.json.example as template)
|
|
.cursor/mcp.json
|
|
|
|
# E2E compose env
|
|
!e2e/.env
|
|
|
|
# E2E test artifacts
|
|
e2e/results/
|
|
e2e/logs/
|
|
!e2e/results/.gitkeep
|
|
!e2e/logs/.gitkeep
|
|
|
|
# Runtime logs
|
|
Logs/
|