apiserver
#
Deployment #
A Deployment consists of running services and core component instances.
Every Deployment is self contained, running a dedicated instance of the control plane and the message queue along with any service defined in the configuration object.
Source code in llama_deploy/apiserver/deployment.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
|
client
property
#
client: AsyncLlamaDeployClient
Returns an async client to interact with this deployment.
start
async
#
start() -> None
The task that will be launched in this deployment asyncio loop.
This task is responsible for launching asyncio tasks for the core components and the services. All the tasks are gathered before returning.
Source code in llama_deploy/apiserver/deployment.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
Manager #
The Manager orchestrates deployments and their runtime.
Usage example
config = Config.from_yaml(data_path / "git_service.yaml")
manager = Manager(tmp_path)
t = threading.Thread(target=asyncio.run, args=(manager.serve(),))
t.start()
manager.deploy(config)
t.join()
Source code in llama_deploy/apiserver/deployment.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
|
deployment_names
property
#
deployment_names: list[str]
Return a list of names for the active deployments.
serve
async
#
serve() -> None
The server loop, it keeps the manager running.
Source code in llama_deploy/apiserver/deployment.py
260 261 262 263 264 265 266 267 |
|
deploy #
deploy(config: Config) -> None
Creates a Deployment instance and starts the relative runtime.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
Config
|
The deployment configuration. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If a deployment with the same name already exists or the maximum number of deployment exceeded. |
DeploymentError
|
If it wasn't possible to create a deployment. |
Source code in llama_deploy/apiserver/deployment.py
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
|
Config #
Bases: BaseModel
Model definition mapping a deployment config file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
|
required |
control_plane
|
ControlPlaneConfig
|
|
required |
message_queue
|
Annotated[Union[AWSMessageQueueConfig, KafkaMessageQueueConfig, RabbitMQMessageQueueConfig, RedisMessageQueueConfig, SimpleMessageQueueConfig], FieldInfo] | None
|
|
None
|
default_service
|
str | None
|
|
None
|
services
|
dict[str, Service]
|
|
required |
Source code in llama_deploy/apiserver/config_parser.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
from_yaml_bytes
classmethod
#
from_yaml_bytes(src: bytes) -> Self
Read config data from bytes containing yaml code.
Source code in llama_deploy/apiserver/config_parser.py
72 73 74 75 76 |
|
from_yaml
classmethod
#
from_yaml(path: Path) -> Self
Read config data from a yaml file.
Source code in llama_deploy/apiserver/config_parser.py
78 79 80 81 82 83 |
|
GitSourceManager #
A SourceManager specialized for sources of type git
.
Source code in llama_deploy/apiserver/source_managers/git.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
sync #
sync(source: str, destination: str | None = None) -> None
Clones the repository at URL source
into a local path destination
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source
|
str
|
The URL of the git repository. It can optionally contain a branch target using the name convention
|
required |
destination
|
str | None
|
The path in the local filesystem where to clone the git repository. |
None
|
Source code in llama_deploy/apiserver/source_managers/git.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
LocalSourceManager #
A SourceManager specialized for sources of type local
.
Source code in llama_deploy/apiserver/source_managers/local.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
sync #
sync(source: str, destination: str | None = None) -> None
Copies the folder with path source
into a local path destination
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source
|
str
|
The filesystem path to the folder containing the source code. |
required |
destination
|
str | None
|
The path in the local filesystem where to copy the source directory. |
None
|
Source code in llama_deploy/apiserver/source_managers/local.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
SourceManager #
Bases: Protocol
Protocol to be implemented by classes responsible for managing Deployment sources.
Source code in llama_deploy/apiserver/source_managers/__init__.py
9 10 11 12 13 14 15 16 17 18 19 |
|
sync #
sync(source: str, destination: str | None = None) -> None
Fetches resources from source
so they can be used in a deployment.
Optionally uses destination
to store data when this makes sense for the
specific source type.
Source code in llama_deploy/apiserver/source_managers/__init__.py
12 13 14 15 16 17 18 19 |
|