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.
- {applied_cli-0.2.0 → applied_cli-0.2.2}/PKG-INFO +1 -1
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/mcp_server.py +7 -1
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/PKG-INFO +1 -1
- {applied_cli-0.2.0 → applied_cli-0.2.2}/pyproject.toml +1 -1
- {applied_cli-0.2.0 → applied_cli-0.2.2}/README.md +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/__init__.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/auth_store.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/__init__.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_hints.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_normalize.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_parsers.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/_ui.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/agent.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/auth.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/chat.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/coverage.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/discover.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/fix.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/insights.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/intents.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/rate.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/responses.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/shop.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/simulate.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/commands/spec.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/config.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/error_reporting.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/http.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/main.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/presets/demo.yaml +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/runtime.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/shop_spec.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli/spec_workflow.py +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/SOURCES.txt +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/dependency_links.txt +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/entry_points.txt +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/requires.txt +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/applied_cli.egg-info/top_level.txt +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/setup.cfg +0 -0
- {applied_cli-0.2.0 → applied_cli-0.2.2}/tests/test_parsers_and_insights.py +0 -0
|
@@ -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
|
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|