tiny-trigger / tiny_trigger /__init__.py
Javier Montalvo
Decouple tracking from detection; size-relative motion; UI tuning
114ea19
Raw
History Blame Contribute Delete
887 Bytes
"""Open-vocabulary video automations for Tiny Trigger."""
from .automation import RuleEngine, evaluate_video_detections, load_automation_text
from .detector import GreedyIoUTracker, UltralyticsYOLOEDetector, parse_class_prompt
from .llm import (
DEFAULT_ANTHROPIC_MODEL,
DEFAULT_OPENAI_MODEL,
DEFAULT_REPLICATE_MODEL,
compile_automation_with_anthropic,
compile_automation_with_openai,
compile_automation_with_replicate,
)
from .video import process_video
__all__ = [
"GreedyIoUTracker",
"RuleEngine",
"UltralyticsYOLOEDetector",
"DEFAULT_ANTHROPIC_MODEL",
"DEFAULT_OPENAI_MODEL",
"DEFAULT_REPLICATE_MODEL",
"compile_automation_with_anthropic",
"compile_automation_with_openai",
"compile_automation_with_replicate",
"evaluate_video_detections",
"load_automation_text",
"parse_class_prompt",
"process_video",
]