llamactl 0.3.0a5__tar.gz → 0.3.0a6__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.
Files changed (23) hide show
  1. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/PKG-INFO +3 -3
  2. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/pyproject.toml +3 -3
  3. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/__init__.py +2 -2
  4. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/commands/profile.py +7 -7
  5. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/README.md +0 -0
  6. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/app.py +0 -0
  7. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/client.py +0 -0
  8. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/commands/aliased_group.py +0 -0
  9. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/commands/deployment.py +0 -0
  10. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/commands/serve.py +0 -0
  11. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/config.py +0 -0
  12. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/debug.py +0 -0
  13. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/env.py +0 -0
  14. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/interactive_prompts/utils.py +0 -0
  15. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/options.py +0 -0
  16. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/deployment_form.py +0 -0
  17. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/deployment_help.py +0 -0
  18. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/git_validation.py +0 -0
  19. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/github_callback_server.py +0 -0
  20. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/llama_loader.py +0 -0
  21. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/profile_form.py +0 -0
  22. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/secrets_form.py +0 -0
  23. {llamactl-0.3.0a5 → llamactl-0.3.0a6}/src/llama_deploy/cli/textual/styles.tcss +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llamactl
3
- Version: 0.3.0a5
3
+ Version: 0.3.0a6
4
4
  Summary: A command-line interface for managing LlamaDeploy projects and deployments
5
5
  Author: Adrian Lyjak
6
6
  Author-email: Adrian Lyjak <adrianlyjak@gmail.com>
7
7
  License: MIT
8
- Requires-Dist: llama-deploy-core>=0.3.0a5,<0.4.0
9
- Requires-Dist: llama-deploy-appserver>=0.3.0a5,<0.4.0
8
+ Requires-Dist: llama-deploy-core>=0.3.0a6,<0.4.0
9
+ Requires-Dist: llama-deploy-appserver>=0.3.0a6,<0.4.0
10
10
  Requires-Dist: httpx>=0.24.0
11
11
  Requires-Dist: rich>=13.0.0
12
12
  Requires-Dist: questionary>=2.0.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llamactl"
3
- version = "0.3.0a5"
3
+ version = "0.3.0a6"
4
4
  description = "A command-line interface for managing LlamaDeploy projects and deployments"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -9,8 +9,8 @@ authors = [
9
9
  ]
10
10
  requires-python = ">=3.12, <4"
11
11
  dependencies = [
12
- "llama-deploy-core>=0.3.0a5,<0.4.0",
13
- "llama-deploy-appserver>=0.3.0a5,<0.4.0",
12
+ "llama-deploy-core>=0.3.0a6,<0.4.0",
13
+ "llama-deploy-appserver>=0.3.0a6,<0.4.0",
14
14
  "httpx>=0.24.0",
15
15
  "rich>=13.0.0",
16
16
  "questionary>=2.0.0",
@@ -1,5 +1,5 @@
1
1
  from llama_deploy.cli.commands.deployment import deployments
2
- from llama_deploy.cli.commands.profile import profile
2
+ from llama_deploy.cli.commands.profile import profiles
3
3
  from llama_deploy.cli.commands.serve import serve
4
4
 
5
5
  from .app import app
@@ -10,7 +10,7 @@ def main() -> None:
10
10
  app()
11
11
 
12
12
 
13
- __all__ = ["app", "deployments", "profile", "serve"]
13
+ __all__ = ["app", "deployments", "profiles", "serve"]
14
14
 
15
15
 
16
16
  if __name__ == "__main__":
@@ -18,13 +18,13 @@ from ..textual.profile_form import create_profile_form, edit_profile_form
18
18
  no_args_is_help=True,
19
19
  )
20
20
  @global_options
21
- def profile() -> None:
21
+ def profiles() -> None:
22
22
  """Manage profiles"""
23
23
  pass
24
24
 
25
25
 
26
26
  # Profile commands
27
- @profile.command("create")
27
+ @profiles.command("create")
28
28
  @global_options
29
29
  @click.option("--name", help="Profile name")
30
30
  @click.option("--api-url", help="API server URL")
@@ -69,7 +69,7 @@ def create_profile(
69
69
  raise click.Abort()
70
70
 
71
71
 
72
- @profile.command("list")
72
+ @profiles.command("list")
73
73
  @global_options
74
74
  def list_profiles() -> None:
75
75
  """List all profiles"""
@@ -100,7 +100,7 @@ def list_profiles() -> None:
100
100
  raise click.Abort()
101
101
 
102
102
 
103
- @profile.command("switch")
103
+ @profiles.command("switch")
104
104
  @global_options
105
105
  @click.argument("name", required=False)
106
106
  def switch_profile(name: str | None) -> None:
@@ -124,7 +124,7 @@ def switch_profile(name: str | None) -> None:
124
124
  raise click.Abort()
125
125
 
126
126
 
127
- @profile.command("delete")
127
+ @profiles.command("delete")
128
128
  @global_options
129
129
  @click.argument("name", required=False)
130
130
  def delete_profile(name: str | None) -> None:
@@ -150,7 +150,7 @@ def delete_profile(name: str | None) -> None:
150
150
  raise click.Abort()
151
151
 
152
152
 
153
- @profile.command("edit")
153
+ @profiles.command("edit")
154
154
  @global_options
155
155
  @click.argument("name", required=False)
156
156
  def edit_profile(name: str | None) -> None:
@@ -189,7 +189,7 @@ def edit_profile(name: str | None) -> None:
189
189
 
190
190
 
191
191
  # Projects commands
192
- @profile.command("list-projects")
192
+ @profiles.command("list-projects")
193
193
  @global_options
194
194
  def list_projects() -> None:
195
195
  """List all projects with deployment counts"""
File without changes