applied-cli 0.2.0__tar.gz → 0.2.2__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 (40) hide show
  1. {applied_cli-0.2.0 → applied_cli-0.2.2}/PKG-INFO +1 -1
  2. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/mcp_server.py +7 -1
  3. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/PKG-INFO +1 -1
  4. {applied_cli-0.2.0 → applied_cli-0.2.2}/pyproject.toml +1 -1
  5. {applied_cli-0.2.0 → applied_cli-0.2.2}/README.md +0 -0
  6. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/__init__.py +0 -0
  7. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/auth_store.py +0 -0
  8. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/__init__.py +0 -0
  9. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_hints.py +0 -0
  10. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_normalize.py +0 -0
  11. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_parsers.py +0 -0
  12. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_ui.py +0 -0
  13. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/agent.py +0 -0
  14. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/auth.py +0 -0
  15. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/chat.py +0 -0
  16. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/coverage.py +0 -0
  17. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/discover.py +0 -0
  18. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/fix.py +0 -0
  19. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/insights.py +0 -0
  20. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/intents.py +0 -0
  21. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/rate.py +0 -0
  22. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/responses.py +0 -0
  23. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/shop.py +0 -0
  24. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/simulate.py +0 -0
  25. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/spec.py +0 -0
  26. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/config.py +0 -0
  27. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/error_reporting.py +0 -0
  28. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/http.py +0 -0
  29. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/main.py +0 -0
  30. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/presets/demo.yaml +0 -0
  31. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/runtime.py +0 -0
  32. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/shop_spec.py +0 -0
  33. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/spec_workflow.py +0 -0
  34. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/SOURCES.txt +0 -0
  35. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/dependency_links.txt +0 -0
  36. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/entry_points.txt +0 -0
  37. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/requires.txt +0 -0
  38. {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/top_level.txt +0 -0
  39. {applied_cli-0.2.0 → applied_cli-0.2.2}/setup.cfg +0 -0
  40. {applied_cli-0.2.0 → applied_cli-0.2.2}/tests/test_parsers_and_insights.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: applied-cli
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: CLI and MCP server for Applied Labs AI support agents
5
5
  Author: Applied Labs
6
6
  License-Expression: MIT
@@ -452,6 +452,7 @@ async def simulate_run(
452
452
  count: int = 10,
453
453
  conversation_type: str = "web_chat",
454
454
  is_test: bool = False,
455
+ is_historical: bool = False,
455
456
  ) -> str:
456
457
  """
457
458
  Generate simulated test conversations for an agent.
@@ -460,7 +461,8 @@ async def simulate_run(
460
461
  agent_id: UUID of the agent
461
462
  count: Number of conversations to generate
462
463
  conversation_type: 'web_chat', 'email', or 'sms'
463
- is_test: Mark as test conversations
464
+ is_test: Mark as test conversations (excluded from analytics if True)
465
+ is_historical: Mark as historical data (may affect analytics display if True)
464
466
  """
465
467
  args = [
466
468
  "simulate", "run",
@@ -474,6 +476,10 @@ async def simulate_run(
474
476
  args.append("--is-test")
475
477
  else:
476
478
  args.append("--no-is-test")
479
+ if is_historical:
480
+ args.append("--is-historical")
481
+ else:
482
+ args.append("--no-is-historical")
477
483
  result = _run_cli(args, timeout=600)
478
484
  return json.dumps(result, indent=2)
479
485
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: applied-cli
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: CLI and MCP server 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.2.0"
3
+ version = "0.2.2"
4
4
  description = "CLI and MCP server for Applied Labs AI support agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
File without changes
File without changes