applied-cli 0.5.68__tar.gz → 0.5.69__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.5.68 → applied_cli-0.5.69}/PKG-INFO +1 -1
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/__init__.py +1 -1
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/agent_scoped_flows.py +10 -13
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli.egg-info/PKG-INFO +1 -1
- {applied_cli-0.5.68 → applied_cli-0.5.69}/pyproject.toml +1 -1
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_agent_scoped_flows.py +11 -4
- {applied_cli-0.5.68 → applied_cli-0.5.69}/README.md +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/cli.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/client.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/conversation_lookup.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/conversations.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/credentials.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/flow_helpers.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/formatters.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli/tools.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli.egg-info/SOURCES.txt +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli.egg-info/dependency_links.txt +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli.egg-info/entry_points.txt +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli.egg-info/requires.txt +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/applied_cli.egg-info/top_level.txt +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/setup.cfg +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_audit_tools.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_benchmark_scenario_tools.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_cli.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_client.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_conversation_tools.py +0 -0
- {applied_cli-0.5.68 → applied_cli-0.5.69}/tests/test_flow_tools.py +0 -0
|
@@ -42,9 +42,7 @@ def _parse_json_option(value: str | None, *, option_name: str) -> dict[str, Any]
|
|
|
42
42
|
) from exc
|
|
43
43
|
|
|
44
44
|
if not isinstance(parsed, dict):
|
|
45
|
-
raise AgentScopedFlowCLIError(
|
|
46
|
-
f"{option_name} must decode to a JSON object."
|
|
47
|
-
)
|
|
45
|
+
raise AgentScopedFlowCLIError(f"{option_name} must decode to a JSON object.")
|
|
48
46
|
|
|
49
47
|
return parsed
|
|
50
48
|
|
|
@@ -123,7 +121,9 @@ async def _handle_flow_delete(
|
|
|
123
121
|
get_client: Callable[[str | None], AppliedClient],
|
|
124
122
|
) -> int:
|
|
125
123
|
client = get_client(args.shop_id)
|
|
126
|
-
flow = await _get_flow_for_agent(
|
|
124
|
+
flow = await _get_flow_for_agent(
|
|
125
|
+
client, agent_id=args.agent_id, flow_id=args.flow_id
|
|
126
|
+
)
|
|
127
127
|
await client.delete_flow(args.flow_id)
|
|
128
128
|
if args.format == "json":
|
|
129
129
|
pass
|
|
@@ -139,12 +139,6 @@ async def _handle_node_create(
|
|
|
139
139
|
client = get_client(args.shop_id)
|
|
140
140
|
await _get_flow_for_agent(client, agent_id=args.agent_id, flow_id=args.flow_id)
|
|
141
141
|
|
|
142
|
-
if args.guardrail:
|
|
143
|
-
raise AgentScopedFlowCLIError(
|
|
144
|
-
"--guardrail is not supported on node create because the API does not "
|
|
145
|
-
"persist it. Create the node first, then run node update --guardrail."
|
|
146
|
-
)
|
|
147
|
-
|
|
148
142
|
node = await client.create_node(
|
|
149
143
|
flow_id=args.flow_id,
|
|
150
144
|
name=normalize_executor_type(args.executor_type),
|
|
@@ -193,11 +187,12 @@ async def _handle_node_delete(
|
|
|
193
187
|
get_client: Callable[[str | None], AppliedClient],
|
|
194
188
|
) -> int:
|
|
195
189
|
client = get_client(args.shop_id)
|
|
196
|
-
flow = await _get_flow_for_agent(
|
|
190
|
+
flow = await _get_flow_for_agent(
|
|
191
|
+
client, agent_id=args.agent_id, flow_id=args.flow_id
|
|
192
|
+
)
|
|
197
193
|
|
|
198
194
|
graph = flow.get("graph") or {}
|
|
199
195
|
nodes = graph.get("nodes") or []
|
|
200
|
-
edges = graph.get("edges") or []
|
|
201
196
|
node = next((item for item in nodes if item.get("id") == args.node_id), None)
|
|
202
197
|
if node is None:
|
|
203
198
|
raise AgentScopedFlowCLIError(
|
|
@@ -265,7 +260,9 @@ async def _handle_edge_delete(
|
|
|
265
260
|
get_client: Callable[[str | None], AppliedClient],
|
|
266
261
|
) -> int:
|
|
267
262
|
client = get_client(args.shop_id)
|
|
268
|
-
flow = await _get_flow_for_agent(
|
|
263
|
+
flow = await _get_flow_for_agent(
|
|
264
|
+
client, agent_id=args.agent_id, flow_id=args.flow_id
|
|
265
|
+
)
|
|
269
266
|
|
|
270
267
|
graph = flow.get("graph") or {}
|
|
271
268
|
edges = graph.get("edges") or []
|
|
@@ -282,7 +282,7 @@ async def test_node_create_prints_raw_json(capsys):
|
|
|
282
282
|
|
|
283
283
|
|
|
284
284
|
@pytest.mark.asyncio
|
|
285
|
-
async def
|
|
285
|
+
async def test_node_create_accepts_guardrail_on_create():
|
|
286
286
|
client = StubClient()
|
|
287
287
|
args = _parse_args(
|
|
288
288
|
[
|
|
@@ -299,8 +299,11 @@ async def test_node_create_rejects_guardrail_on_create():
|
|
|
299
299
|
]
|
|
300
300
|
)
|
|
301
301
|
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
exit_code = await _handle_node_create(args, lambda _shop_id: client)
|
|
303
|
+
|
|
304
|
+
assert exit_code == 0
|
|
305
|
+
assert client.created_node_args is not None
|
|
306
|
+
assert client.created_node_args["guardrail"] == "Be careful"
|
|
304
307
|
|
|
305
308
|
|
|
306
309
|
@pytest.mark.asyncio
|
|
@@ -347,7 +350,11 @@ async def test_node_update_prints_raw_json(capsys):
|
|
|
347
350
|
|
|
348
351
|
assert exit_code == 0
|
|
349
352
|
assert client.updated_node_args == ("flow-1", "node-1", {"prompt": "hi"})
|
|
350
|
-
assert json.loads(capsys.readouterr().out) == {
|
|
353
|
+
assert json.loads(capsys.readouterr().out) == {
|
|
354
|
+
**client.node,
|
|
355
|
+
"id": "node-1",
|
|
356
|
+
"prompt": "hi",
|
|
357
|
+
}
|
|
351
358
|
|
|
352
359
|
|
|
353
360
|
@pytest.mark.asyncio
|
|
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
|