bat-cli 0.1.0__tar.gz → 0.1.1__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 (54) hide show
  1. {bat_cli-0.1.0 → bat_cli-0.1.1}/PKG-INFO +1 -1
  2. {bat_cli-0.1.0 → bat_cli-0.1.1}/pyproject.toml +1 -1
  3. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/bat_cli.egg-info/PKG-INFO +1 -1
  4. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/cli.py +1 -1
  5. {bat_cli-0.1.0 → bat_cli-0.1.1}/README.md +0 -0
  6. {bat_cli-0.1.0 → bat_cli-0.1.1}/setup.cfg +0 -0
  7. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/add/__init__.py +0 -0
  8. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/add/client.py +0 -0
  9. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/bat_cli.egg-info/SOURCES.txt +0 -0
  10. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/bat_cli.egg-info/dependency_links.txt +0 -0
  11. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/bat_cli.egg-info/entry_points.txt +0 -0
  12. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/bat_cli.egg-info/requires.txt +0 -0
  13. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/bat_cli.egg-info/top_level.txt +0 -0
  14. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/build/__init__.py +0 -0
  15. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/build/build.py +0 -0
  16. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/__init__.py +0 -0
  17. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/agent.py +0 -0
  18. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/.dockerignore +0 -0
  19. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/.env.template +0 -0
  20. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/.python-version +0 -0
  21. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/Dockerfile +0 -0
  22. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/Makefile +0 -0
  23. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/README.md +0 -0
  24. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/__main__.py +0 -0
  25. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/agent.json.template +0 -0
  26. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/agent.spec +0 -0
  27. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/config.yaml +0 -0
  28. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/llm_client.py.template +0 -0
  29. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/pyproject.toml.template +0 -0
  30. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/src/__init__.py +0 -0
  31. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/src/graph.py +0 -0
  32. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/src/llm_clients/__init__.py +0 -0
  33. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/create/templates/agent/tests/__init__.py +0 -0
  34. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/__init__.py +0 -0
  35. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/commands.py +0 -0
  36. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/__init__.py +0 -0
  37. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/adapter.py +0 -0
  38. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/bench_runner.py +0 -0
  39. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/contracts.py +0 -0
  40. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/eval_config.py +0 -0
  41. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/evaluator.py +0 -0
  42. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/metrics/__init__.py +0 -0
  43. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/metrics/llm_evaluators.py +0 -0
  44. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/metrics/metrics.py +0 -0
  45. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/metrics/qualitative_helpers.py +0 -0
  46. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/orchestrator.py +0 -0
  47. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/eval/engine/plotter.py +0 -0
  48. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/image_defaults.py +0 -0
  49. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/push/__init__.py +0 -0
  50. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/push/push.py +0 -0
  51. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/set/__init__.py +0 -0
  52. {bat_cli-0.1.0 → bat_cli-0.1.1}/src/set/env.py +0 -0
  53. {bat_cli-0.1.0 → bat_cli-0.1.1}/tests/test_create_new_agent.py +0 -0
  54. {bat_cli-0.1.0 → bat_cli-0.1.1}/tests/test_eval_commands.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bat-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: CLI tool to interact with BAT agents
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bat-cli"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "CLI tool to interact with BAT agents"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bat-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: CLI tool to interact with BAT agents
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -101,7 +101,7 @@ def _parse_clients_option(raw_clients: str | None) -> list[str] | None:
101
101
 
102
102
  @init_app.command("agent")
103
103
  def create_new_agent(
104
- name: str = typer.Argument("default", help="Name of the agent directory to create."),
104
+ name: str = typer.Argument(help="Name of the agent directory to create."),
105
105
  clients: str | None = typer.Option(
106
106
  None,
107
107
  "--clients",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes