llama-deploy-core 0.3.0a8__tar.gz → 0.3.0a10__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.
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llama-deploy-core
3
- Version: 0.3.0a8
3
+ Version: 0.3.0a10
4
4
  Summary: Core models and schemas for LlamaDeploy
5
5
  License: MIT
6
6
  Requires-Dist: pydantic>=2.0.0
7
7
  Requires-Dist: pyyaml>=6.0.2
8
+ Requires-Dist: types-pyyaml>=6.0.12.20250822
8
9
  Requires-Python: >=3.12, <4
9
10
  Description-Content-Type: text/markdown
10
11
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llama-deploy-core"
3
- version = "0.3.0a8"
3
+ version = "0.3.0a10"
4
4
  description = "Core models and schemas for LlamaDeploy"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -8,6 +8,7 @@ requires-python = ">=3.12, <4"
8
8
  dependencies = [
9
9
  "pydantic>=2.0.0",
10
10
  "pyyaml>=6.0.2",
11
+ "types-pyyaml>=6.0.12.20250822",
11
12
  ]
12
13
 
13
14
  [build-system]
@@ -18,6 +18,15 @@ LlamaDeploymentPhase = Literal[
18
18
  ]
19
19
 
20
20
 
21
+ class DeploymentEvent(Base):
22
+ message: str | None = None
23
+ reason: str | None = None
24
+ type: str | None = None
25
+ first_timestamp: datetime | None = None
26
+ last_timestamp: datetime | None = None
27
+ count: int | None = None
28
+
29
+
21
30
  class DeploymentResponse(Base):
22
31
  id: str
23
32
  name: str
@@ -31,6 +40,7 @@ class DeploymentResponse(Base):
31
40
  apiserver_url: HttpUrl | None
32
41
  status: LlamaDeploymentPhase
33
42
  warning: str | None = None
43
+ events: list[DeploymentEvent] | None = None
34
44
 
35
45
 
36
46
  class DeploymentsListResponse(Base):