add groups to capabilities

This commit is contained in:
henryruhs
2026-07-02 20:39:09 +02:00
parent 4895615334
commit b6a1adb7a5
17 changed files with 175 additions and 84 deletions
+6 -3
View File
@@ -22,7 +22,8 @@ def before_all() -> None:
nargs = '+'
)
],
scopes = [ 'api' ]
scopes = [ 'api' ],
groups = [ 'paths' ]
)
capability_store.register_capability_set(
[
@@ -30,7 +31,8 @@ def before_all() -> None:
'--target-path'
)
],
scopes = [ 'api' ]
scopes = [ 'api' ],
groups = [ 'paths' ]
)
capability_store.register_capability_set(
[
@@ -39,7 +41,8 @@ def before_all() -> None:
nargs = '+'
)
],
scopes = [ 'api' ]
scopes = [ 'api' ],
groups = [ 'paths' ]
)
state_manager.init_item('execution_providers', [ 'cpu' ])