llama-deploy-appserver 0.3.0a5__tar.gz → 0.3.0a6__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.
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/PKG-INFO +2 -2
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/pyproject.toml +2 -2
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/README.md +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/__init__.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/__main__.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/app.py +8 -8
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/bootstrap.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/deployment.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/deployment_config_parser.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/process_utils.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/routers/__init__.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/routers/deployments.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/routers/status.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/routers/ui_proxy.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/settings.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/stats.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/types.py +0 -0
- {llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/workflow_loader.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: llama-deploy-appserver
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.0a6
|
4
4
|
Summary: Application server components for LlamaDeploy
|
5
5
|
Author: Massimiliano Pippi
|
6
6
|
Author-email: Massimiliano Pippi <mpippi@gmail.com>
|
@@ -10,7 +10,7 @@ Requires-Dist: pydantic-settings>=2.10.1
|
|
10
10
|
Requires-Dist: uvicorn>=0.24.0
|
11
11
|
Requires-Dist: fastapi>=0.100.0
|
12
12
|
Requires-Dist: websockets>=12.0
|
13
|
-
Requires-Dist: llama-deploy-core>=0.3.
|
13
|
+
Requires-Dist: llama-deploy-core>=0.3.0a6,<0.4.0
|
14
14
|
Requires-Dist: httpx>=0.28.1
|
15
15
|
Requires-Dist: prometheus-fastapi-instrumentator>=7.1.0
|
16
16
|
Requires-Dist: packaging>=25.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "llama-deploy-appserver"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.0a6"
|
4
4
|
description = "Application server components for LlamaDeploy"
|
5
5
|
readme = "README.md"
|
6
6
|
license = { text = "MIT" }
|
@@ -14,7 +14,7 @@ dependencies = [
|
|
14
14
|
"uvicorn>=0.24.0",
|
15
15
|
"fastapi>=0.100.0",
|
16
16
|
"websockets>=12.0",
|
17
|
-
"llama-deploy-core>=0.3.
|
17
|
+
"llama-deploy-core>=0.3.0a6,<0.4.0",
|
18
18
|
"httpx>=0.28.1",
|
19
19
|
"prometheus-fastapi-instrumentator>=7.1.0",
|
20
20
|
"packaging>=25.0",
|
File without changes
|
File without changes
|
File without changes
|
{llama_deploy_appserver-0.3.0a5 → llama_deploy_appserver-0.3.0a6}/src/llama_deploy/appserver/app.py
RENAMED
@@ -85,6 +85,14 @@ if not os.environ.get("DISABLE_CORS", False):
|
|
85
85
|
app.include_router(health_router)
|
86
86
|
|
87
87
|
|
88
|
+
def open_browser_async(host: str, port: int) -> None:
|
89
|
+
def _open_with_delay() -> None:
|
90
|
+
time.sleep(1)
|
91
|
+
webbrowser.open(f"http://{host}:{port}")
|
92
|
+
|
93
|
+
threading.Thread(target=_open_with_delay).start()
|
94
|
+
|
95
|
+
|
88
96
|
def prepare_server(
|
89
97
|
deployment_file: Path | None = None,
|
90
98
|
install: bool = False,
|
@@ -183,11 +191,3 @@ if __name__ == "__main__":
|
|
183
191
|
deployment_file=args.deployment_file,
|
184
192
|
open_browser=args.open_browser,
|
185
193
|
)
|
186
|
-
|
187
|
-
|
188
|
-
def open_browser_async(host: str, port: int) -> None:
|
189
|
-
def _open_with_delay() -> None:
|
190
|
-
time.sleep(1)
|
191
|
-
webbrowser.open(f"http://{host}:{port}")
|
192
|
-
|
193
|
-
threading.Thread(target=_open_with_delay).start()
|
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
|
File without changes
|
File without changes
|
File without changes
|