Skip to content

Commit

Permalink
fix: model file path in modal_server
Browse files Browse the repository at this point in the history
  • Loading branch information
limcheekin authored Jul 19, 2024
1 parent a1289ee commit 5c82f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modal_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def fastapi_app():
return create_app(
Settings(
n_threads=os.cpu_count(),
model=f"./{os.environ['APP_NAME']}.guff"
model=f"/{os.environ['APP_NAME']}.guff"
)
)

Expand Down

0 comments on commit 5c82f9d

Please sign in to comment.