applied-cli 0.5.63__tar.gz → 0.5.64__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 (27) hide show
  1. {applied_cli-0.5.63 → applied_cli-0.5.64}/PKG-INFO +1 -1
  2. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/__init__.py +1 -1
  3. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/client.py +1 -1
  4. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli.egg-info/PKG-INFO +1 -1
  5. {applied_cli-0.5.63 → applied_cli-0.5.64}/pyproject.toml +1 -1
  6. {applied_cli-0.5.63 → applied_cli-0.5.64}/README.md +0 -0
  7. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/agent_scoped_flows.py +0 -0
  8. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/cli.py +0 -0
  9. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/conversation_lookup.py +0 -0
  10. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/conversations.py +0 -0
  11. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/credentials.py +0 -0
  12. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/flow_helpers.py +0 -0
  13. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/formatters.py +0 -0
  14. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli/tools.py +0 -0
  15. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli.egg-info/SOURCES.txt +0 -0
  16. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli.egg-info/dependency_links.txt +0 -0
  17. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli.egg-info/entry_points.txt +0 -0
  18. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli.egg-info/requires.txt +0 -0
  19. {applied_cli-0.5.63 → applied_cli-0.5.64}/applied_cli.egg-info/top_level.txt +0 -0
  20. {applied_cli-0.5.63 → applied_cli-0.5.64}/setup.cfg +0 -0
  21. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_agent_scoped_flows.py +0 -0
  22. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_audit_tools.py +0 -0
  23. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_benchmark_scenario_tools.py +0 -0
  24. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_cli.py +0 -0
  25. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_client.py +0 -0
  26. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_conversation_tools.py +0 -0
  27. {applied_cli-0.5.63 → applied_cli-0.5.64}/tests/test_flow_tools.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: applied-cli
3
- Version: 0.5.63
3
+ Version: 0.5.64
4
4
  Summary: CLI and shared client library for Applied Labs AI support agents
5
5
  Author: Applied Labs
6
6
  License-Expression: MIT
@@ -4,6 +4,6 @@ from applied_cli import tools
4
4
  from applied_cli.client import AppliedClient
5
5
  from applied_cli.formatters import to_csv, to_json
6
6
 
7
- __version__ = "0.5.63"
7
+ __version__ = "0.5.64"
8
8
 
9
9
  __all__ = ["AppliedClient", "tools", "to_csv", "to_json", "__version__"]
@@ -1771,7 +1771,7 @@ class AppliedClient:
1771
1771
  "POST",
1772
1772
  "/v1/conversation-benchmarks/",
1773
1773
  body={
1774
- "agent_id": agent_id,
1774
+ "agent": agent_id,
1775
1775
  "name": name,
1776
1776
  "description": description,
1777
1777
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: applied-cli
3
- Version: 0.5.63
3
+ Version: 0.5.64
4
4
  Summary: CLI and shared client library for Applied Labs AI support agents
5
5
  Author: Applied Labs
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "applied-cli"
3
- version = "0.5.63"
3
+ version = "0.5.64"
4
4
  description = "CLI and shared client library for Applied Labs AI support agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
File without changes
File without changes