Skip to content

Commit d72620c

Browse files
committed
fix: add services directory to search and server images
1 parent 8841ad0 commit d72620c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

backend/shared/images.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_dev_image() -> modal.Image:
4444
def get_server_image() -> modal.Image:
4545
"""
4646
Create the Modal image for the Server app.
47-
47+
4848
Minimal dependencies for fast cold starts.
4949
Handles: health, status, upload, search, list_videos, delete operations.
5050
"""
@@ -62,13 +62,14 @@ def get_server_image() -> modal.Image:
6262
"models",
6363
"api",
6464
"shared",
65+
"services",
6566
)
6667
)
6768

6869
def get_search_image() -> modal.Image:
6970
"""
7071
Create the Modal image for the Search app.
71-
72+
7273
Medium dependencies - includes CLIP text encoder only.
7374
The text encoder (~150MB) is much lighter than the full CLIP model (~350MB).
7475
"""
@@ -85,6 +86,7 @@ def get_search_image() -> modal.Image:
8586
"database",
8687
"search",
8788
"shared",
89+
"services",
8890
)
8991
)
9092

0 commit comments

Comments
 (0)