deploy
#
deploy_core
async
#
deploy_core(control_plane_config: Optional[ControlPlaneConfig] = None, message_queue_config: Optional[BaseSettings] = None, orchestrator_config: Optional[SimpleOrchestratorConfig] = None, disable_message_queue: bool = False, disable_control_plane: bool = False) -> None
Deploy the core components of the llama_deploy system.
This function sets up and launches the message queue, control plane, and orchestrator. It handles the initialization and connection of these core components.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
control_plane_config
|
Optional[ControlPlaneConfig]
|
Configuration for the control plane. |
None
|
message_queue_config
|
Optional[BaseSettings]
|
Configuration for the message queue. Defaults to a local SimpleMessageQueue. |
None
|
orchestrator_config
|
Optional[SimpleOrchestratorConfig]
|
Configuration for the orchestrator. If not provided, a default SimpleOrchestratorConfig will be used. |
None
|
disable_message_queue
|
bool
|
Whether to disable deploying the message queue. Defaults to False. |
False
|
disable_control_plane
|
bool
|
Whether to disable deploying the control plane. Defaults to False. |
False
|
Raises:
Type | Description |
---|---|
ValueError
|
If an unknown message queue type is specified in the config. |
Exception
|
If any of the launched tasks encounter an error. |
Source code in llama_deploy/deploy/deploy.py
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 |
|
deploy_workflow
async
#
deploy_workflow(workflow: Workflow, workflow_config: WorkflowServiceConfig, control_plane_config: Optional[ControlPlaneConfig] = None) -> None
Deploy a workflow as a service within the llama_deploy system.
This function sets up a workflow as a service, connects it to the message queue, and registers it with the control plane.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
workflow
|
Workflow
|
The workflow to be deployed as a service. |
required |
workflow_config
|
WorkflowServiceConfig
|
Configuration for the workflow service. |
required |
control_plane_config
|
Optional[ControlPlaneConfig]
|
Configuration for the control plane. |
None
|
Raises:
Type | Description |
---|---|
HTTPError
|
If there's an error communicating with the control plane. |
ValueError
|
If an invalid message queue config is encountered. |
Exception
|
If any of the launched tasks encounter an error. |
Source code in llama_deploy/deploy/deploy.py
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 221 222 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 |
|