github-actions[bot] commited on
Commit
b120a3a
Β·
1 Parent(s): 32181fa

Automated UV deployment

Browse files
Files changed (2) hide show
  1. =0.1.4 +2 -2
  2. ui/app.py +4 -0
=0.1.4 CHANGED
@@ -23,9 +23,9 @@ Requirement already satisfied: sniffio>=1.1 in /opt/hostedtoolcache/Python/3.12.
23
  Requirement already satisfied: click>=8.0.0 in /opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/site-packages (from typer-slim->huggingface-hub>=0.30) (8.2.1)
24
  Downloading huggingface_hub-1.1.2-py3-none-any.whl (514 kB)
25
  Downloading hf_xet-1.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB)
26
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 192.8 MB/s 0:00:00
27
  Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB)
28
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 207.2 MB/s 0:00:00
29
  Downloading typer_slim-0.20.0-py3-none-any.whl (47 kB)
30
  Installing collected packages: typer-slim, hf-xet, hf-transfer, huggingface-hub
31
 
 
23
  Requirement already satisfied: click>=8.0.0 in /opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/site-packages (from typer-slim->huggingface-hub>=0.30) (8.2.1)
24
  Downloading huggingface_hub-1.1.2-py3-none-any.whl (514 kB)
25
  Downloading hf_xet-1.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB)
26
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 76.6 MB/s 0:00:00
27
  Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB)
28
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 397.6 MB/s 0:00:00
29
  Downloading typer_slim-0.20.0-py3-none-any.whl (47 kB)
30
  Installing collected packages: typer-slim, hf-xet, hf-transfer, huggingface-hub
31
 
ui/app.py CHANGED
@@ -32,6 +32,10 @@ ROOT = Path(__file__).resolve().parents[1] # project root
32
  if str(ROOT) not in sys.path:
33
  sys.path.insert(0, str(ROOT))
34
 
 
 
 
 
35
  from config import make_path
36
  from app.pipeline.scene_detect import SceneDetector
37
  from app.pipeline.frame_extract import FrameExtractor
 
32
  if str(ROOT) not in sys.path:
33
  sys.path.insert(0, str(ROOT))
34
 
35
+ # For debugging path issues
36
+ print("sys.path:", sys.path)
37
+ print("ROOT:", ROOT)
38
+
39
  from config import make_path
40
  from app.pipeline.scene_detect import SceneDetector
41
  from app.pipeline.frame_extract import FrameExtractor