cycls 0.0.2.66__tar.gz → 0.0.2.67__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cycls-0.0.2.66 → cycls-0.0.2.67}/PKG-INFO +1 -1
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/sdk.py +3 -2
- {cycls-0.0.2.66 → cycls-0.0.2.67}/pyproject.toml +1 -1
- {cycls-0.0.2.66 → cycls-0.0.2.67}/README.md +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/__init__.py +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/auth.py +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/default-theme/assets/index-B0ZKcm_V.css +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/default-theme/assets/index-D5EDcI4J.js +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/default-theme/index.html +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/dev-theme/index.html +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/runtime.py +0 -0
- {cycls-0.0.2.66 → cycls-0.0.2.67}/cycls/web.py +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import time, inspect, uvicorn
|
|
2
2
|
from .runtime import Runtime
|
|
3
|
-
from modal.runner import run_app
|
|
4
3
|
from .web import web, Config
|
|
5
4
|
from .auth import PK_LIVE, PK_TEST, JWKS_PROD, JWKS_TEST
|
|
6
5
|
import importlib.resources
|
|
@@ -123,6 +122,8 @@ class Agent:
|
|
|
123
122
|
return
|
|
124
123
|
|
|
125
124
|
def modal(self, prod=False):
|
|
125
|
+
import modal
|
|
126
|
+
from modal.runner import run_app
|
|
126
127
|
self.client = modal.Client.from_credentials(*self.modal_keys)
|
|
127
128
|
image = (modal.Image.debian_slim()
|
|
128
129
|
.pip_install("fastapi[standard]", "pyjwt", "cryptography", *self.pip)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|