arkitekt-next 0.8.44__py3-none-any.whl → 0.8.46__py3-none-any.whl
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.
Potentially problematic release.
This version of arkitekt-next might be problematic. Click here for more details.
- arkitekt_next/cli/commands/delegate/__init__.py +0 -0
- arkitekt_next/cli/commands/delegate/main.py +20 -0
- arkitekt_next/cli/commands/delegate/script.py +96 -0
- arkitekt_next/cli/main.py +2 -0
- {arkitekt_next-0.8.44.dist-info → arkitekt_next-0.8.46.dist-info}/METADATA +9 -8
- {arkitekt_next-0.8.44.dist-info → arkitekt_next-0.8.46.dist-info}/RECORD +9 -6
- {arkitekt_next-0.8.44.dist-info → arkitekt_next-0.8.46.dist-info}/LICENSE +0 -0
- {arkitekt_next-0.8.44.dist-info → arkitekt_next-0.8.46.dist-info}/WHEEL +0 -0
- {arkitekt_next-0.8.44.dist-info → arkitekt_next-0.8.46.dist-info}/entry_points.txt +0 -0
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import rich_click as click
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
import rich_click as click
|
|
5
|
+
from .script import script
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@click.group()
|
|
9
|
+
@click.pass_context
|
|
10
|
+
def delegate(ctx):
|
|
11
|
+
"""Inspects your arkitekt_next app
|
|
12
|
+
|
|
13
|
+
Inspects various parts of your arkitekt_next app. This is useful for debugging
|
|
14
|
+
and development. It also represents methods that are called by the arkitekt_next
|
|
15
|
+
server when you run your app in production mode.
|
|
16
|
+
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
delegate.add_command(script, "script")
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import rich_click as click
|
|
2
|
+
from arkitekt_next.cli.options import *
|
|
3
|
+
import asyncio
|
|
4
|
+
from arkitekt_next.cli.ui import construct_run_panel
|
|
5
|
+
from importlib import import_module
|
|
6
|
+
from arkitekt_next.cli.utils import import_builder
|
|
7
|
+
from rekuest_next.agents.extensions.delegating.extension import CLIExtension
|
|
8
|
+
from rekuest_next.api.schema import NodeKind, BindsInput
|
|
9
|
+
from rich.table import Table
|
|
10
|
+
from rich.console import Console
|
|
11
|
+
from typing import Dict, Any
|
|
12
|
+
|
|
13
|
+
from rekuest_next.rekuest import RekuestNext
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
async def call_app(
|
|
17
|
+
console: Console,
|
|
18
|
+
app: App,
|
|
19
|
+
template_string: str,
|
|
20
|
+
arg: Dict[str, Any],
|
|
21
|
+
):
|
|
22
|
+
async with app:
|
|
23
|
+
await app.services.get("rekuest").agent.aprovide()
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
@click.command("prod")
|
|
27
|
+
@click.argument("script_name", type=str, required=True, nargs=-1)
|
|
28
|
+
@click.option(
|
|
29
|
+
"--url",
|
|
30
|
+
help="The fakts_next url for connection",
|
|
31
|
+
default=DEFAULT_ARKITEKT_URL,
|
|
32
|
+
envvar="FAKTS_URL",
|
|
33
|
+
)
|
|
34
|
+
@with_builder
|
|
35
|
+
@with_token
|
|
36
|
+
@with_instance_id
|
|
37
|
+
@with_headless
|
|
38
|
+
@with_log_level
|
|
39
|
+
@with_skip_cache
|
|
40
|
+
@click.pass_context
|
|
41
|
+
@click.option(
|
|
42
|
+
"--arg",
|
|
43
|
+
"-a",
|
|
44
|
+
"args",
|
|
45
|
+
help="Key Value pairs for the setup",
|
|
46
|
+
type=(str, str),
|
|
47
|
+
multiple=True,
|
|
48
|
+
)
|
|
49
|
+
@click.option(
|
|
50
|
+
"--template",
|
|
51
|
+
"-t",
|
|
52
|
+
"template",
|
|
53
|
+
help="The template to run",
|
|
54
|
+
type=str,
|
|
55
|
+
)
|
|
56
|
+
def script(
|
|
57
|
+
ctx,
|
|
58
|
+
script_name,
|
|
59
|
+
entrypoint=None,
|
|
60
|
+
builder=None,
|
|
61
|
+
args=None,
|
|
62
|
+
template: str = None,
|
|
63
|
+
**builder_kwargs,
|
|
64
|
+
):
|
|
65
|
+
"""Runs the app in production mode
|
|
66
|
+
|
|
67
|
+
\n
|
|
68
|
+
You can specify the builder to use with the --builder flag. By default, the easy builder is used, which is designed to be easy to use and to get started with.
|
|
69
|
+
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
manifest = get_manifest(ctx)
|
|
73
|
+
console = get_console(ctx)
|
|
74
|
+
entrypoint = entrypoint or manifest.entrypoint
|
|
75
|
+
|
|
76
|
+
kwargs = dict(args or [])
|
|
77
|
+
|
|
78
|
+
builder = import_builder(builder)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
app = builder(
|
|
83
|
+
**manifest.to_builder_dict(),
|
|
84
|
+
**builder_kwargs,
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
rekuest: RekuestNext = app.services.get("rekuest")
|
|
89
|
+
|
|
90
|
+
rekuest.agent.register_extension("cli", CLIExtension(" ".join(script_name)))
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
panel = construct_run_panel(app)
|
|
94
|
+
console.print(panel)
|
|
95
|
+
|
|
96
|
+
asyncio.run(call_app(console, app, template, kwargs))
|
arkitekt_next/cli/main.py
CHANGED
|
@@ -21,6 +21,7 @@ from arkitekt_next.cli.commands.init.main import init
|
|
|
21
21
|
from arkitekt_next.cli.commands.manifest.main import manifest
|
|
22
22
|
from arkitekt_next.cli.commands.inspect.main import inspect
|
|
23
23
|
from arkitekt_next.cli.commands.call.main import call
|
|
24
|
+
from arkitekt_next.cli.commands.delegate.main import delegate
|
|
24
25
|
from arkitekt_next.cli.io import load_manifest
|
|
25
26
|
from arkitekt_next.utils import create_arkitekt_next_folder
|
|
26
27
|
|
|
@@ -76,6 +77,7 @@ cli.add_command(kabinet, "kabinet")
|
|
|
76
77
|
cli.add_command(manifest, "manifest")
|
|
77
78
|
cli.add_command(inspect, "inspect")
|
|
78
79
|
cli.add_command(call, "call")
|
|
80
|
+
cli.add_command(delegate, "delegate")
|
|
79
81
|
|
|
80
82
|
if __name__ == "__main__":
|
|
81
83
|
cli()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: arkitekt-next
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.46
|
|
4
4
|
Summary: client for the arkitekt_next platform
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: jhnnsrs
|
|
@@ -17,25 +17,26 @@ Provides-Extra: all
|
|
|
17
17
|
Provides-Extra: blok
|
|
18
18
|
Provides-Extra: cli
|
|
19
19
|
Provides-Extra: extended
|
|
20
|
+
Provides-Extra: stream
|
|
20
21
|
Requires-Dist: blok (>=0.0.19) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "blok")
|
|
21
22
|
Requires-Dist: cryptography (>=40.0.8) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
|
|
22
23
|
Requires-Dist: dokker (>=1.0.0)
|
|
23
24
|
Requires-Dist: fakts-next (>=1.0.2)
|
|
24
|
-
Requires-Dist: fluss-next (>=0.1.
|
|
25
|
+
Requires-Dist: fluss-next (>=0.1.95) ; extra == "all"
|
|
25
26
|
Requires-Dist: herre-next (>=1.0.2)
|
|
26
|
-
Requires-Dist: kabinet (>=0.1.
|
|
27
|
+
Requires-Dist: kabinet (>=0.1.45) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "all")
|
|
27
28
|
Requires-Dist: koil (>=1.0.3)
|
|
28
|
-
Requires-Dist: kraph (>=0.1.
|
|
29
|
-
Requires-Dist: lovekit (>=0.1.16) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "
|
|
29
|
+
Requires-Dist: kraph (>=0.1.100) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "extended")
|
|
30
|
+
Requires-Dist: lovekit (>=0.1.16) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "stream")
|
|
30
31
|
Requires-Dist: mikro-next (>=0.1.50) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
|
|
31
32
|
Requires-Dist: namegenerator (>=1.0.6) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
|
|
32
33
|
Requires-Dist: netifaces (>=0.11.0) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
|
|
33
|
-
Requires-Dist: reaktion-next (>=0.1.
|
|
34
|
-
Requires-Dist: rekuest-next (>=0.2.
|
|
34
|
+
Requires-Dist: reaktion-next (>=0.1.85) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
|
|
35
|
+
Requires-Dist: rekuest-next (>=0.2.49) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "cli" or extra == "all")
|
|
35
36
|
Requires-Dist: rich-click (>=1.6.1) ; extra == "cli" or extra == "all"
|
|
36
37
|
Requires-Dist: semver (>=3.0.1) ; extra == "cli" or extra == "all"
|
|
37
38
|
Requires-Dist: turms (>=0.8.2) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "cli" or extra == "all")
|
|
38
|
-
Requires-Dist: unlok-next (>=0.1.
|
|
39
|
+
Requires-Dist: unlok-next (>=0.1.87) ; python_version >= "3.8" and python_version < "4.0"
|
|
39
40
|
Requires-Dist: watchfiles (>=0.18.1) ; extra == "cli" or extra == "all"
|
|
40
41
|
Description-Content-Type: text/markdown
|
|
41
42
|
|
|
@@ -50,6 +50,9 @@ arkitekt_next/cli/commands/call/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
50
50
|
arkitekt_next/cli/commands/call/local.py,sha256=OAeC2r9ujBFclaCfKEmUpt0Mt3NAKw3sVPTDvs2w_8E,2059
|
|
51
51
|
arkitekt_next/cli/commands/call/main.py,sha256=SdxlvSgA17-M_gwItiFU_srbh-CNdHpCTv_DkpOLojE,500
|
|
52
52
|
arkitekt_next/cli/commands/call/remote.py,sha256=Id6t1nUdXmERx9wbutEhvryUMAM80_G4HVHkhYZosTE,2097
|
|
53
|
+
arkitekt_next/cli/commands/delegate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
arkitekt_next/cli/commands/delegate/main.py,sha256=Zxrly_VjzJ-SILGkyEwW4f_vabwNj77EOUMTIlwoO40,450
|
|
55
|
+
arkitekt_next/cli/commands/delegate/script.py,sha256=HhFrzTN7Ihx0oSSniFcV2jBoBiJoRWr6Ht2OOBS1bLo,2168
|
|
53
56
|
arkitekt_next/cli/commands/gen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
57
|
arkitekt_next/cli/commands/gen/compile.py,sha256=F0rAeBL4WWLdBGQRxVNqe5Bjek_SovhNO5rKrMEhj_4,1457
|
|
55
58
|
arkitekt_next/cli/commands/gen/init.py,sha256=EAztQs-C2Ta11_mrAwj5pw7u3NrqQnlkVCeY2tHIhLE,4887
|
|
@@ -88,7 +91,7 @@ arkitekt_next/cli/dockerfiles/vanilla.dockerfile,sha256=0ujdG22rZ6v2n5TMHNA4HR5f
|
|
|
88
91
|
arkitekt_next/cli/errors.py,sha256=zLTjaCbun6qM2nTldjyZd-DvykqKn5A3Gn80uYdx7Vc,93
|
|
89
92
|
arkitekt_next/cli/inspect.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
90
93
|
arkitekt_next/cli/io.py,sha256=QSnyIjPKZZ_pWp-b_hbM4XGwarCf4IYTgcXtNXBawH8,7143
|
|
91
|
-
arkitekt_next/cli/main.py,sha256=
|
|
94
|
+
arkitekt_next/cli/main.py,sha256=XFANY2Qv-M-kPkel9bed0iRZ3QzQAbRqO39F4pKEfEE,2327
|
|
92
95
|
arkitekt_next/cli/options.py,sha256=LwhEdjZutH_go568buS37L9Gn_roinrCC6BUu2sC3B0,3814
|
|
93
96
|
arkitekt_next/cli/schemas/fluss.schema.graphql,sha256=MqrSpOxtWO9kWFCoUn9ySBPhIH3XozFiqrQl2zjEbiQ,35803
|
|
94
97
|
arkitekt_next/cli/schemas/gucker.schema.graphql,sha256=r_KL-MoFRCGUobbtcBLCnpmFcali2A12TguynqQgmN4,152947
|
|
@@ -132,8 +135,8 @@ arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
|
|
|
132
135
|
arkitekt_next/service_registry.py,sha256=oga1_fy7clwtcQO7XcSzWlyu2d5dna9H79uKLv8fKI0,6119
|
|
133
136
|
arkitekt_next/tqdm.py,sha256=lQcJI5Q6Py7Gy88hOCiJujjPEEGd8G2k1mOVJJ6oYe8,1531
|
|
134
137
|
arkitekt_next/utils.py,sha256=QETdzn_GIMSw6LdaXL89bqvqp9MGwEBK8Lj54MpnMwc,2396
|
|
135
|
-
arkitekt_next-0.8.
|
|
136
|
-
arkitekt_next-0.8.
|
|
137
|
-
arkitekt_next-0.8.
|
|
138
|
-
arkitekt_next-0.8.
|
|
139
|
-
arkitekt_next-0.8.
|
|
138
|
+
arkitekt_next-0.8.46.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
|
|
139
|
+
arkitekt_next-0.8.46.dist-info/METADATA,sha256=qK7zioBNHgg6f7Wt_TmiaZYEqyjn9aL-4WqeanxmBes,6237
|
|
140
|
+
arkitekt_next-0.8.46.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
141
|
+
arkitekt_next-0.8.46.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
|
|
142
|
+
arkitekt_next-0.8.46.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|