Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed May 2, 2024
1 parent 75c700b commit 2dd3448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experimental/demo/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from modal import Image, Stub, gpu, asgi_app, Volume
from modal import Image, Stub, gpu, asgi_app, Volume, Secret

IMAGE_NAME = os.environ.get("TABBY_IMAGE", "tabbyml/tabby")

Expand All @@ -22,7 +22,7 @@
timeout=600,
volumes = {"/data": volume},
_allow_background_volume_commits=True,
secrets=[modal.Secret.from_name("deepseek-openapi-key")]
secrets=[Secret.from_name("deepseek-openapi-key")]
)
@asgi_app()
def entry():
Expand Down

0 comments on commit 2dd3448

Please sign in to comment.