llama-deploy-core 0.3.15__py3-none-any.whl → 0.3.16__py3-none-any.whl

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.
@@ -61,6 +61,21 @@ def _run_process(args: list[str], cwd: str | None = None, timeout: int = 30) ->
61
61
  result = subprocess.run(
62
62
  args, cwd=cwd, capture_output=True, text=True, check=False, timeout=timeout
63
63
  )
64
+ except FileNotFoundError as e:
65
+ # Executable not found (e.g., git not installed). Normalize to GitAccessError
66
+ cmd = " ".join(args)
67
+ where = f" (cwd={cwd})" if cwd else ""
68
+ executable = args[0] if args else "<unknown>"
69
+ raise GitAccessError(
70
+ f"Executable not found: {executable}. Failed to run: {cmd}{where}"
71
+ ) from e
72
+ except OSError as e:
73
+ # Other OS-level execution errors (e.g., permission denied)
74
+ cmd = " ".join(args)
75
+ where = f" (cwd={cwd})" if cwd else ""
76
+ raise GitAccessError(
77
+ f"Failed to execute command: {cmd}{where}. {e.__class__.__name__}: {e}"
78
+ ) from e
64
79
  except subprocess.TimeoutExpired:
65
80
  cmd = " ".join(args)
66
81
  where = f" (cwd={cwd})" if cwd else ""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llama-deploy-core
3
- Version: 0.3.15
3
+ Version: 0.3.16
4
4
  Summary: Core models and schemas for LlamaDeploy
5
5
  License: MIT
6
6
  Requires-Dist: fastapi>=0.115.0
@@ -16,5 +16,8 @@ Provides-Extra: client
16
16
  Provides-Extra: server
17
17
  Description-Content-Type: text/markdown
18
18
 
19
- > [!WARNING]
20
- > This repository contains pre-release software. It is unstable, incomplete, and subject to breaking changes. Not recommended for use.
19
+ # llama-deploy-core
20
+
21
+ Core models and schemas for LlamaDeploy.
22
+
23
+ For an end-to-end introduction, see [Getting started with LlamaAgents](https://developers.llamaindex.ai/python/cloud/llamaagents/getting-started).
@@ -3,7 +3,7 @@ llama_deploy/core/client/manage_client.py,sha256=d33613cc3355896dc15d20ead713b77
3
3
  llama_deploy/core/client/ssl_util.py,sha256=b9743dc828fa27c18ba0867b1348662cdf0d855965c5a33db63505f23eef5d7b,1010
4
4
  llama_deploy/core/config.py,sha256=69bb0ea8ac169eaa4e808cd60a098b616bddd3145d26c6c35e56db38496b0e6a,35
5
5
  llama_deploy/core/deployment_config.py,sha256=8156d7935a7ce3879a4cfe6e457d4e55d26ce59d7177c6c82007ca32ba92cb26,16354
6
- llama_deploy/core/git/git_util.py,sha256=8b20ba8c12cbcd26ef7d4d06e9fd693f643fc4a64d6da739c3977451e91f1658,11206
6
+ llama_deploy/core/git/git_util.py,sha256=40436142a955d39c95a5b526df57c32a6f31bbb6a421c090710c9c1c9d741373,11883
7
7
  llama_deploy/core/iter_utils.py,sha256=68ac9dbf09f58315ffcfec6bd01ed50b88a954b00458da9bc28a0535b79ba29e,7042
8
8
  llama_deploy/core/path_util.py,sha256=14d50c0c337c8450ed46cafc88436027056b365a48370a69cdb76c88d7c26fd1,798
9
9
  llama_deploy/core/py.typed,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
@@ -18,6 +18,6 @@ llama_deploy/core/server/manage_api/_abstract_deployments_service.py,sha256=4b55
18
18
  llama_deploy/core/server/manage_api/_create_deployments_router.py,sha256=2db7d59a43e8690cf6d3d925940212228498f0a7c5728cfcf4253830d6fa1b52,7554
19
19
  llama_deploy/core/server/manage_api/_exceptions.py,sha256=ee71cd9c2354a665e6905cd9cc752d2d65f71f0b936d33fec3c1c5229c38accf,246
20
20
  llama_deploy/core/ui_build.py,sha256=290dafa951918e5593b9035570fa4c66791d7e5ea785bd372ad11e99e8283857,1514
21
- llama_deploy_core-0.3.15.dist-info/WHEEL,sha256=66530aef82d5020ef5af27ae0123c71abb9261377c5bc519376c671346b12918,79
22
- llama_deploy_core-0.3.15.dist-info/METADATA,sha256=03232c0c24817caaca6e60d0db88130cb24cfe2ac3957da050efac5287ee41f6,698
23
- llama_deploy_core-0.3.15.dist-info/RECORD,,
21
+ llama_deploy_core-0.3.16.dist-info/WHEEL,sha256=66530aef82d5020ef5af27ae0123c71abb9261377c5bc519376c671346b12918,79
22
+ llama_deploy_core-0.3.16.dist-info/METADATA,sha256=30ea1675fba4bd736bb362210248d5c2be6e3d8d6cfb5b223fe96536c08c1a02,760
23
+ llama_deploy_core-0.3.16.dist-info/RECORD,,