llama-deploy-core 0.3.0a14__py3-none-any.whl → 0.3.0a16__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.
@@ -23,18 +23,21 @@ async def get_project_id(project_id: Annotated[str, Query()]) -> str:
23
23
  def create_v1beta1_deployments_router(
24
24
  deployments_service: AbstractDeploymentsService,
25
25
  public_service: AbstractPublicDeploymentsService,
26
- get_project_id: Callable[[str], Awaitable[str]] = get_project_id,
27
- dependencies: list[params.Depends] = [],
28
- public_dependencies: list[params.Depends] = [],
26
+ get_project_id: Callable[..., Awaitable[str]] = get_project_id,
27
+ dependencies: list[params.Depends] | None = None,
28
+ public_dependencies: list[params.Depends] | None = None,
29
+ include_in_schema: bool = True,
29
30
  ) -> APIRouter:
30
- base_router = APIRouter(prefix="/api/v1beta1")
31
+ base_router = APIRouter(prefix="/api/v1beta1", include_in_schema=include_in_schema)
31
32
  public_router = APIRouter(
32
33
  tags=["v1beta1-deployments-public"],
33
34
  dependencies=public_dependencies,
35
+ include_in_schema=include_in_schema,
34
36
  )
35
37
  router = APIRouter(
36
38
  tags=["v1beta1-deployments"],
37
39
  dependencies=dependencies,
40
+ include_in_schema=include_in_schema,
38
41
  )
39
42
 
40
43
  @public_router.get("/version")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llama-deploy-core
3
- Version: 0.3.0a14
3
+ Version: 0.3.0a16
4
4
  Summary: Core models and schemas for LlamaDeploy
5
5
  License: MIT
6
6
  Requires-Dist: fastapi>=0.115.0
@@ -13,9 +13,9 @@ llama_deploy/core/schema/projects.py,sha256=726f91e90ff8699c90861d9740819c44c3f0
13
13
  llama_deploy/core/schema/public.py,sha256=022129c8fc09192f5e503b0500ccf54d106f5712b9cf8ce84b3b1c37e186f930,147
14
14
  llama_deploy/core/server/manage_api/__init__.py,sha256=e477ccab59cfd084edbad46f209972a282e623eb314d0847a754a46a16361db5,457
15
15
  llama_deploy/core/server/manage_api/_abstract_deployments_service.py,sha256=85ceab2a343c3642db7f77d4a665d5710a14bca920bbfdc25c5f1168cce30b22,4638
16
- llama_deploy/core/server/manage_api/_create_deployments_router.py,sha256=cde496f5922a74ae6199224abb25aefa1a357bb45c06ce25de79283d6f1a7174,6622
16
+ llama_deploy/core/server/manage_api/_create_deployments_router.py,sha256=9bc8468169445e1cc7f2a479e1c7da42b4bdd7482fa3b440e03ee49cd09a75df,6801
17
17
  llama_deploy/core/server/manage_api/_exceptions.py,sha256=ee71cd9c2354a665e6905cd9cc752d2d65f71f0b936d33fec3c1c5229c38accf,246
18
18
  llama_deploy/core/ui_build.py,sha256=290dafa951918e5593b9035570fa4c66791d7e5ea785bd372ad11e99e8283857,1514
19
- llama_deploy_core-0.3.0a14.dist-info/WHEEL,sha256=66530aef82d5020ef5af27ae0123c71abb9261377c5bc519376c671346b12918,79
20
- llama_deploy_core-0.3.0a14.dist-info/METADATA,sha256=8d13ddc1e6b6ec292b5715931f95f41ac5733af8d74183bd3fb423df80476d4f,659
21
- llama_deploy_core-0.3.0a14.dist-info/RECORD,,
19
+ llama_deploy_core-0.3.0a16.dist-info/WHEEL,sha256=66530aef82d5020ef5af27ae0123c71abb9261377c5bc519376c671346b12918,79
20
+ llama_deploy_core-0.3.0a16.dist-info/METADATA,sha256=930ba767494f89e4e64ecd2b012b5483ab03692e437a9c215cbe93fd42f68291,659
21
+ llama_deploy_core-0.3.0a16.dist-info/RECORD,,