- Add database migrations (006-028) for face recognition, identity, file_uuid - Add test scripts for ASR, face, search, processing - Add portal frontend (Tauri) - Add config, benchmark, and monitoring utilities - Add model checkpoints and pretrained model references
8 lines
355 B
SQL
8 lines
355 B
SQL
-- 1. Create monitor job
|
|
INSERT INTO monitor_jobs (uuid, video_path, status)
|
|
VALUES ('9760d0820f0cf9a7', '/Users/accusys/momentry/var/sftpgo/data/demo/ExaSAN PCIe series - Director Ou Yu-Zhi Shares His Experience.mp4', 'pending')
|
|
RETURNING id;
|
|
|
|
-- Note: The job_id will be returned. Let's assume it's 18 for now.
|
|
-- We'll run these commands step by step.
|