arkitekt-next 0.7.55__py3-none-any.whl → 0.7.57__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.

@@ -4,7 +4,7 @@ from blok import blok, InitContext, Option
4
4
  from arkitekt_next.bloks.services.admin import AdminService, AdminCredentials
5
5
 
6
6
 
7
- @blok(AdminService)
7
+ @blok(AdminService, description="sdmin credentials for the application")
8
8
  class AdminBlok:
9
9
  def __init__(self) -> None:
10
10
  self.password = "admin"
@@ -10,6 +10,7 @@ from .fluss import FlussBlok
10
10
  from .gateway import GatewayBlok
11
11
  from .internal_docker import InternalDockerBlok
12
12
  from .orkestrator import OrkestratorBlok
13
+ from typing import Optional
13
14
 
14
15
 
15
16
  class AdminCredentials(BaseModel):
@@ -23,7 +24,7 @@ class ArkitektBlok:
23
24
  def entry(self, renderer: Renderer):
24
25
  renderer.render(
25
26
  Panel(
26
- f"This is the arkitekt build that allows you to setup a full stack arkitekt application. Make sure to understand how bloks work before proceeding.",
27
+ f"""This is the arkitekt build that allows you to setup a full stack arkitekt application. You can use this to setup a full stack application with the following services""",
27
28
  expand=False,
28
29
  title="Welcome to Arkitekt!",
29
30
  style="bold magenta",
@@ -32,17 +33,27 @@ class ArkitektBlok:
32
33
 
33
34
  def preflight(
34
35
  self,
35
- lok: LocalLiveKitBlok,
36
- mikro: MikroBlok,
37
- kabinet: KabinetBlok,
38
- rekuest: RekuestBlok,
39
- fluss: FlussBlok,
40
36
  gateway: GatewayBlok,
41
- internal_engine: InternalDockerBlok,
42
- scale: TailscaleBlok,
43
- orkestrator: OrkestratorBlok,
37
+ livekit: Optional[LocalLiveKitBlok] = None,
38
+ mikro: Optional[MikroBlok] = None,
39
+ kabinet: Optional[KabinetBlok] = None,
40
+ rekuest: Optional[RekuestBlok] = None,
41
+ fluss: Optional[FlussBlok] = None,
42
+ internal_engine: Optional[InternalDockerBlok] = None,
43
+ scale: Optional[TailscaleBlok] = None,
44
+ orkestrator: Optional[OrkestratorBlok] = None,
44
45
  ):
45
- print(lok, mikro, kabinet, rekuest, fluss, gateway, internal_engine)
46
+ print(
47
+ gateway,
48
+ mikro,
49
+ kabinet,
50
+ rekuest,
51
+ fluss,
52
+ gateway,
53
+ internal_engine,
54
+ scale,
55
+ orkestrator,
56
+ )
46
57
 
47
58
  def build(self, cwd):
48
59
  pass
@@ -9,7 +9,9 @@ from typing import List
9
9
  DEFAULT_ARKITEKT_URL = "http://localhost:8000"
10
10
 
11
11
 
12
- @blok("live.arkitekt.fluss")
12
+ @blok(
13
+ "live.arkitekt.fluss", description="A service for managing workflows and their data"
14
+ )
13
15
  class FlussBlok(BaseArkitektService):
14
16
  def __init__(self) -> None:
15
17
  self.dev = False
@@ -31,7 +31,9 @@ class ExposedPort(BaseModel):
31
31
  to: int
32
32
 
33
33
 
34
- @blok("live.arkitekt.gateway")
34
+ @blok(
35
+ "live.arkitekt.gateway", description="A gateway for exposing services on the host"
36
+ )
35
37
  class GatewayBlok:
36
38
  def __init__(self) -> None:
37
39
  self.exposed_hosts = {}
@@ -9,7 +9,10 @@ from blok.bloks.services.dns import DnsService
9
9
  from blok.tree import YamlFile, Repo
10
10
 
11
11
 
12
- @blok("live.arkitekt.internal_engine")
12
+ @blok(
13
+ "live.arkitekt.internal_engine",
14
+ description="an arktitekt deployer app that uses docker",
15
+ )
13
16
  class InternalDockerBlok:
14
17
  def __init__(self) -> None:
15
18
  self.host = "internal_docker"
@@ -7,7 +7,7 @@ from blok.tree import Repo, YamlFile
7
7
  from arkitekt_next.bloks.base import BaseArkitektService
8
8
 
9
9
 
10
- @blok("live.arkitekt.kabinet")
10
+ @blok("live.arkitekt.kabinet", description="a container and app management service")
11
11
  class KabinetBlok(BaseArkitektService):
12
12
  def __init__(self) -> None:
13
13
  self.dev = False
@@ -7,7 +7,7 @@ from blok import blok, InitContext, ExecutionContext, Option
7
7
  from blok.tree import YamlFile, Repo
8
8
 
9
9
 
10
- @blok(LivekitService)
10
+ @blok(LivekitService, description="a self-hosted livekit server")
11
11
  class LocalLiveKitBlok:
12
12
  def __init__(self) -> None:
13
13
  self.host = "livekit"
@@ -113,7 +113,7 @@ class ScopeParamType(click.ParamType):
113
113
  SCOPE = ScopeParamType()
114
114
 
115
115
 
116
- @blok(LokService)
116
+ @blok(LokService, description="Lok is an authentication and authorization service")
117
117
  class LokBlok:
118
118
  db_name: str
119
119
 
@@ -18,7 +18,7 @@ class AccessCredentials(BaseModel):
18
18
  db_name: str
19
19
 
20
20
 
21
- @blok("live.arkitekt.mikro")
21
+ @blok("live.arkitekt.mikro", description="Mikro is the bio-image database for arkitekt")
22
22
  class MikroBlok(BaseArkitektService):
23
23
  def __init__(self) -> None:
24
24
  self.dev = False
@@ -33,7 +33,10 @@ class BucketMapParamType(click.ParamType):
33
33
  TOKEN = BucketMapParamType()
34
34
 
35
35
 
36
- @blok(S3Service)
36
+ @blok(
37
+ S3Service,
38
+ description="Minio is an easy use self-hosted object storage service",
39
+ )
37
40
  class MinioBlok:
38
41
  db_name: str
39
42
 
@@ -6,9 +6,8 @@ from blok import blok, InitContext, Option, ExecutionContext
6
6
  from blok.tree import YamlFile
7
7
 
8
8
 
9
- @blok(MountService)
9
+ @blok(MountService, description="Mounting files into the file tree for use")
10
10
  class MountBlok:
11
-
12
11
  def __init__(self) -> None:
13
12
  self.mount_path = "mounts"
14
13
  self.registered_configs = {}
@@ -8,7 +8,7 @@ import secrets
8
8
  import namegenerator
9
9
 
10
10
 
11
- @blok(NameService)
11
+ @blok(NameService, description="Preformed names that will not change")
12
12
  class PreformedNamesBlok:
13
13
  def __init__(self) -> None:
14
14
  self.preformed_names = [namegenerator.gen() for _ in range(100)]
@@ -6,7 +6,10 @@ from blok.bloks.services.vscode import VsCodeService
6
6
  from blok.tree import Repo, YamlFile
7
7
 
8
8
 
9
- @blok("live.arkitekt.orkestrator")
9
+ @blok(
10
+ "live.arkitekt.orkestrator",
11
+ description="Orkestrator is the electron-based UI for arkitekt",
12
+ )
10
13
  class OrkestratorBlok:
11
14
  def __init__(self) -> None:
12
15
  self.dev = False
@@ -28,13 +31,21 @@ class OrkestratorBlok:
28
31
  return
29
32
  self.mount = mount.register_mount("orkestrator", Repo(self.repo))
30
33
 
31
- vscode.register_task(
32
- "Run Orkestrator",
33
- "shell",
34
- "yarn",
35
- ["start"],
36
- {"cwd": f"{self.mount}"},
37
- )
34
+ if vscode is not None:
35
+ vscode.register_task(
36
+ "Run Orkestrator",
37
+ "shell",
38
+ "yarn",
39
+ ["start"],
40
+ {"cwd": f"{self.mount}"},
41
+ )
42
+ vscode.register_task(
43
+ "Build Orkestrator",
44
+ "shell",
45
+ "yarn",
46
+ [],
47
+ {"cwd": f"{self.mount}"},
48
+ )
38
49
 
39
50
  self.initialized = True
40
51
 
@@ -1,6 +1,7 @@
1
- from typing import Optional
1
+ from typing import Any, Dict, Optional
2
2
 
3
3
  from arkitekt_next.bloks.services.db import DBService, DBCredentials
4
+ from arkitekt_next.bloks.services.mount import MountService
4
5
  from blok import blok, InitContext, ExecutionContext, Option
5
6
  from blok.tree import YamlFile, Repo
6
7
  from pydantic import BaseModel
@@ -10,7 +11,10 @@ import secrets
10
11
  from blok import blok, InitContext
11
12
 
12
13
 
13
- @blok(DBService)
14
+ @blok(
15
+ DBService,
16
+ description="Postgres with Apache AGE",
17
+ )
14
18
  class PostgresBlok(BaseModel):
15
19
  host: str = "db"
16
20
  port: int = 5432
@@ -18,8 +22,13 @@ class PostgresBlok(BaseModel):
18
22
  password: str = pydantic.Field(default_factory=lambda: secrets.token_hex(16))
19
23
  user: str = pydantic.Field(default_factory=lambda: namegenerator.gen(separator=""))
20
24
  image: str = "jhnnsrs/daten:next"
25
+ mount_repo: bool = False
26
+ build_repo: bool = False
27
+ repo: str = "https://github.com/arkitektio/daten-server"
28
+ dev: bool = False
21
29
 
22
30
  registered_dbs: dict[str, DBCredentials] = {}
31
+ build_image: Optional[Dict[str, Any]] = None
23
32
 
24
33
  def get_dependencies(self):
25
34
  return []
@@ -42,22 +51,34 @@ class PostgresBlok(BaseModel):
42
51
  self.registered_dbs[db_name] = access_credentials
43
52
  return access_credentials
44
53
 
45
- def preflight(self, init: InitContext):
54
+ def preflight(self, init: InitContext, mount: MountService):
46
55
  for key, value in init.kwargs.items():
47
56
  setattr(self, key, value)
48
57
 
49
- def build(self, context: ExecutionContext):
50
- db_service = {
58
+ self.build_image = {
51
59
  "environment": {
52
60
  "POSTGRES_USER": self.user,
53
61
  "POSTGRES_PASSWORD": self.password,
54
- "POSTGRES_MULTIPLE_DATABASES": ",".join(self.registered_dbs.keys()),
62
+ "POSTGRES_MULTIPLE_DATABASES": "",
55
63
  },
56
- "image": self.image,
57
64
  "labels": ["fakts.service=live.arkitekt.postgres"],
58
65
  }
59
66
 
60
- context.docker_compose.set_nested(f"services", self.host, db_service)
67
+
68
+ if self.build_repo or self.dev:
69
+ mount = init.get_service(MountService).register_mount(self.host, Repo(self.repo))
70
+ self.build_image["build"] = mount
71
+ else:
72
+ self.build_image["image"] = self.image
73
+
74
+
75
+ def build(self, context: ExecutionContext):
76
+
77
+ self.build_image["environment"]["POSTGRES_MULTIPLE_DATABASES"] = ",".join(
78
+ self.registered_dbs.keys()
79
+ )
80
+
81
+ context.docker_compose.set_nested(f"services", self.host, self.build_image)
61
82
 
62
83
  def get_options(self):
63
84
  with_postgres_password = Option(
@@ -80,5 +101,27 @@ class PostgresBlok(BaseModel):
80
101
  help="The image to use for the service",
81
102
  default=self.image,
82
103
  )
104
+ with_repo = Option(
105
+ subcommand="repo",
106
+ help="The repo to use for the service",
107
+ default=self.repo,
108
+ )
109
+ build_repo = Option(
110
+ subcommand="build_repo",
111
+ help="Should we build the repo?",
112
+ default=self.build_repo,
113
+ )
114
+
115
+ mount_repo = Option(
116
+ subcommand="mount_repo",
117
+ help="Should we mount the repo?",
118
+ default=self.mount_repo,
119
+ )
120
+
121
+ dev = Option(
122
+ subcommand="dev",
123
+ help="Should we run the service in development mode (includes withrepo, mountrepo)?",
124
+ default=self.dev,
125
+ )
83
126
 
84
- return [with_postgres_password, skip_build, with_user_password, with_image]
127
+ return [with_postgres_password, skip_build, with_user_password, with_image, with_repo, build_repo, mount_repo, dev]
@@ -9,7 +9,10 @@ from typing import Dict, Any, Optional
9
9
  from blok import blok, InitContext
10
10
 
11
11
 
12
- @blok(RedisService)
12
+ @blok(
13
+ RedisService,
14
+ description="Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker",
15
+ )
13
16
  class RedisBlok:
14
17
  def __init__(self) -> None:
15
18
  self.host = "redis"
@@ -6,7 +6,7 @@ from blok.tree import Repo, YamlFile
6
6
  from arkitekt_next.bloks.base import BaseArkitektService
7
7
 
8
8
 
9
- @blok("live.arkitekt.rekuest")
9
+ @blok("live.arkitekt.rekuest", description="Rekuest is the RPC and Functionaliy hub")
10
10
  class RekuestBlok(BaseArkitektService):
11
11
  def __init__(self) -> None:
12
12
  self.dev = False
@@ -6,7 +6,7 @@ from arkitekt_next.bloks.services.secret import SecretService
6
6
  import secrets
7
7
 
8
8
 
9
- @blok(SecretService)
9
+ @blok(SecretService, description="Preformed secrets that will not change")
10
10
  class SecretBlok:
11
11
  def __init__(self) -> None:
12
12
  self.preformed_secrets = [secrets.token_urlsafe(32) for _ in range(100)]
@@ -10,7 +10,9 @@ class AdminCredentials(BaseModel):
10
10
  email: str
11
11
 
12
12
 
13
- @blok("live.arkitekt.docker_socket")
13
+ @blok(
14
+ "live.arkitekt.docker_socket", description="Hosting the docker socket of the host"
15
+ )
14
16
  class DockerSocketBlok:
15
17
  def __init__(self) -> None:
16
18
  self.docker_socket = "/var/run/docker.sock"
@@ -7,7 +7,7 @@ from blok.bloks.services.dns import DnsService
7
7
  from blok.tree import YamlFile
8
8
 
9
9
 
10
- @blok("live.arkitekt.tailscale")
10
+ @blok("live.arkitekt.tailscale", description="Tailscale is a zero config VPN")
11
11
  class TailscaleBlok:
12
12
  def __init__(self, name: str = "arkitekt") -> None:
13
13
  self.name = name
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: arkitekt-next
3
- Version: 0.7.55
3
+ Version: 0.7.57
4
4
  Summary: client for the arkitekt_next platform
5
5
  License: MIT
6
6
  Author: jhnnsrs
@@ -16,23 +16,24 @@ Classifier: Programming Language :: Python :: 3.12
16
16
  Provides-Extra: all
17
17
  Provides-Extra: blok
18
18
  Provides-Extra: cli
19
- Requires-Dist: blok (>=0.0.18) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
19
+ Requires-Dist: blok (>=0.0.19) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
20
20
  Requires-Dist: cryptography (>=40.0.8) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
21
21
  Requires-Dist: dokker (>=0.1.21)
22
22
  Requires-Dist: fakts (>=0.5.0)
23
- Requires-Dist: fluss-next (>=0.1.75) ; extra == "all"
23
+ Requires-Dist: fluss-next (>=0.1.77) ; extra == "all"
24
24
  Requires-Dist: herre (>=0.4.3)
25
- Requires-Dist: kabinet (>=0.1.13) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "all")
25
+ Requires-Dist: kabinet (>=0.1.15) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "all")
26
26
  Requires-Dist: koil (>=0.3.6)
27
- Requires-Dist: mikro-next (>=0.1.30) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
27
+ Requires-Dist: lovekit (>=0.1.4) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "all")
28
+ Requires-Dist: mikro-next (>=0.1.32) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "all")
28
29
  Requires-Dist: namegenerator (>=1.0.6) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
29
30
  Requires-Dist: netifaces (>=0.11.0) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "blok")
30
- Requires-Dist: reaktion-next (>=0.1.65) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
31
- Requires-Dist: rekuest-next (>=0.2.20) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "cli" or extra == "all")
31
+ Requires-Dist: reaktion-next (>=0.1.67) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "all")
32
+ Requires-Dist: rekuest-next (>=0.2.22) ; (python_version >= "3.8" and python_version < "4.0") and (extra == "cli" or extra == "all")
32
33
  Requires-Dist: rich-click (>=1.6.1) ; extra == "cli" or extra == "all"
33
34
  Requires-Dist: semver (>=3.0.1) ; extra == "cli" or extra == "all"
34
35
  Requires-Dist: turms (>=0.5.0) ; (python_version >= "3.9" and python_version < "4.0") and (extra == "cli" or extra == "all")
35
- Requires-Dist: unlok-next (>=0.1.69) ; python_version >= "3.8" and python_version < "4.0"
36
+ Requires-Dist: unlok-next (>=0.1.70) ; python_version >= "3.8" and python_version < "4.0"
36
37
  Requires-Dist: watchfiles (>=0.18.1) ; extra == "cli" or extra == "all"
37
38
  Description-Content-Type: text/markdown
38
39
 
@@ -13,25 +13,25 @@ arkitekt_next/apps/service/herre.py,sha256=DuIhyEujgXrYzhG2tKTMUgHkTScfg6UCX5eCV
13
13
  arkitekt_next/apps/service/herre_qt.py,sha256=GntkKHmwcQqEFab02SWwdd3xONo0fLVGEPQMKH6tlCE,1628
14
14
  arkitekt_next/apps/types.py,sha256=uozRXDDGJBL9hYCYGZF_XmtZ4ZvoLZeEEfJeL10Ve3U,1136
15
15
  arkitekt_next/bloks/__init__.py,sha256=_4EeR63d6avQUWLG4mK2n_FvogTPQ_Jx6f2_RvNbWeA,29
16
- arkitekt_next/bloks/admin.py,sha256=MlUQUYCHxCWtSD75mVHgs3DcDa0s8_D6_AIBslnYjZw,1300
17
- arkitekt_next/bloks/arkitekt.py,sha256=N0WcdEr_x2TzDdpIW_WP8lVodYxRbOU4I5IP-aKGLLQ,1417
16
+ arkitekt_next/bloks/admin.py,sha256=mRTfjIR1vsfY1ghgjWLjKYFAOh1pGCmQ_IEt2QOR3og,1353
17
+ arkitekt_next/bloks/arkitekt.py,sha256=e20urxnObHL-7WqBcrhiiOjd6pCsaVSUYeodzCGaX9s,1753
18
18
  arkitekt_next/bloks/base.py,sha256=6gsDc9sVYDqY4El2hhH32QiYHcYUd6eZQRgvhAuY2a0,6341
19
19
  arkitekt_next/bloks/config.py,sha256=YMQChT4SCdc_vvvbkAj_qGyA--6JVEHds7MalqUp3lw,1269
20
- arkitekt_next/bloks/fluss.py,sha256=b9hBV0nMy_0ctQIEQntGGaee3oDZy1lQKO1Eacc0zVs,997
21
- arkitekt_next/bloks/gateway.py,sha256=Qfw_SkJbyMe5GrZ8YJaaLVyZ2ZlKpacJjUFLBk97vbg,6692
22
- arkitekt_next/bloks/internal_docker.py,sha256=4jhKwfVKPCZzhkuEVq1iw4gIpc6_R0Cco-_s0L8PiZI,2891
23
- arkitekt_next/bloks/kabinet.py,sha256=a_NA9psOvwypZm_FqIs3Yn6L-G1R8EMOUApJMSiBnPA,1432
24
- arkitekt_next/bloks/livekit.py,sha256=yhre3PkIQwKGdGPFC-DhTID3rIbRQMts_UsAX9tw6-A,2561
25
- arkitekt_next/bloks/lok.py,sha256=-OoCFzf2ci8sBrYBnnmni-cJoAxuynUSj0kzWYpJznw,11444
26
- arkitekt_next/bloks/mikro.py,sha256=r7wc56pvFkPkxigx70xEu31dgpO6q3TviDQUM9oyQwM,1223
27
- arkitekt_next/bloks/minio.py,sha256=k7t1J46lO3eaBO9KdP7iYF--Go-m25dEmOwisbbOoVQ,5496
28
- arkitekt_next/bloks/mount.py,sha256=Kfg4fthxMyQFkayWDsycadehlJPlN76ExzUiRU476Uc,1032
29
- arkitekt_next/bloks/namegen.py,sha256=GMcSW6qOVGd2GGS7SQ4liPWbMhWyHLSOtnMVdnMOr0o,1035
30
- arkitekt_next/bloks/orkestrator.py,sha256=bKuwpJlZWQT1cbxFewzaVMTs7Iano7tgXPBj21gesek,2116
31
- arkitekt_next/bloks/postgres.py,sha256=jQ17O_EyIR7lpSmeTQIReEb2nFEM_IzKgqoYiZDu20I,2771
32
- arkitekt_next/bloks/redis.py,sha256=Irfs9V6wGEr0VdDPmr2KfVFgQ8sDd733ieDVEKTkUZ0,2130
33
- arkitekt_next/bloks/rekuest.py,sha256=6mxRK1M5ua14rEeF2Wr0QjqV0eUgOLvdDJAuDpRDRUk,993
34
- arkitekt_next/bloks/secret.py,sha256=UmcLp1KWzBsjjwzT-YpVzFlhAaf7WE6-gaf-M9CH6VY,1013
20
+ arkitekt_next/bloks/fluss.py,sha256=dwBantNQfS2zhcQ1_nJp6327_6JDW-0nJog0os1wGzk,1066
21
+ arkitekt_next/bloks/gateway.py,sha256=n3qhAcLj5LOxq6Tua2z0B7yvYh4hL9rG4sKNUD4F9iU,6757
22
+ arkitekt_next/bloks/internal_docker.py,sha256=MLPS6rvcOPjkHF447gFXQu1AJvanp-zfb2F6Ekhf4Hk,2960
23
+ arkitekt_next/bloks/kabinet.py,sha256=bPeVt-3grDm93pWU2bXoJN1SG1ULRtCNchuPjCYFwcs,1486
24
+ arkitekt_next/bloks/livekit.py,sha256=0eN23bfXACzmwULFGQu7l4DzOSK9rfyF8bOYWSO3MzE,2605
25
+ arkitekt_next/bloks/lok.py,sha256=o77vwQ3PeoSwF7Ztp4M5vTea5NHlNfm7eMMoF0fIoWM,11510
26
+ arkitekt_next/bloks/mikro.py,sha256=lJZVg6LiH9bGbrnWWNZ3AWRm9OI0fo_XXztByGDzyMc,1283
27
+ arkitekt_next/bloks/minio.py,sha256=vl1RPpleT2THyecChRgWsaRIrzhhJwG4lBbt9YVtMgE,5578
28
+ arkitekt_next/bloks/mount.py,sha256=IEod6LDuV5NNKvvRJ3Xgo8l2caVZnNmJYDgGGBUB3Cg,1088
29
+ arkitekt_next/bloks/namegen.py,sha256=W9xco2d3eJLdL2NYpTFmqw2d4s3vCpBREIFNm38gMYY,1087
30
+ arkitekt_next/bloks/orkestrator.py,sha256=TJfMr6VCEU0EP_0TPpNdJsLVydGlmaDfYK1EQp2ArW8,2447
31
+ arkitekt_next/bloks/postgres.py,sha256=mQgS_iyaWZWB1x95WGl1ZLIG6s4ey28MXtwzn_aZKTw,4153
32
+ arkitekt_next/bloks/redis.py,sha256=A9scMZohACsk-k1LQZo-rTFTB_eq12dqL4zVZkKdKLQ,2274
33
+ arkitekt_next/bloks/rekuest.py,sha256=gdvyf_hazZ2iDi6-E5IEvfB5bvL3puyPNctEMKesgXQ,1048
34
+ arkitekt_next/bloks/secret.py,sha256=06J9f6-o1NCE0ReakVOyA0KbmQ-xr2fCYQWKOc_z1QQ,1067
35
35
  arkitekt_next/bloks/services/__init__.py,sha256=i9vGNd1lFBem3O2PblTouRzFVQkdwOYoUmqqU43dIWQ,592
36
36
  arkitekt_next/bloks/services/admin.py,sha256=qeNa9KkFJk0DSNV-Ses-vkLjC3xHtvHnVHJ3w0DPKOA,463
37
37
  arkitekt_next/bloks/services/config.py,sha256=E0X-AweMxbbVQihqPuUEUzt9Y5J2DKY5sFX2efORtS0,378
@@ -45,8 +45,8 @@ arkitekt_next/bloks/services/redis.py,sha256=W9CraIZJztFE1vQVCfxCxY4T_gBPRTM84Vw
45
45
  arkitekt_next/bloks/services/s3.py,sha256=_mk_9NdaeHRVZ__1M9CL1Ec1gSQKkzlOiQXse7MSx94,485
46
46
  arkitekt_next/bloks/services/secret.py,sha256=cnZsH09gN9YRXBbmalZaFD2LcmWLlfm52mDTAnfuYT4,344
47
47
  arkitekt_next/bloks/services/socket.py,sha256=3MbENiJrwQbFKrpWxax56F24elnSD7S-olgycfuOX7s,423
48
- arkitekt_next/bloks/socket.py,sha256=YIrSKfQezrsKwRKDPdT1aXhlQzjgnx_UaNaQ9LiEfGY,1008
49
- arkitekt_next/bloks/tailscale.py,sha256=IkMBA1CwslMTOF1m2UUmE6qH_gbaEet2eXsPDgBxcew,2915
48
+ arkitekt_next/bloks/socket.py,sha256=IW4954Hgms_oZsDIk9SgLoVGz07gW3sHi7-WuhN074Q,1067
49
+ arkitekt_next/bloks/tailscale.py,sha256=87cJv9m7N_I3y2ZRvv5WVepRhvIZk4ftUpwa0yUdwj4,2961
50
50
  arkitekt_next/builders.py,sha256=wFIMPb4dSYuE-y-TiqZ8c_lxt1qMbgwQ4NnuMuj1rR8,7454
51
51
  arkitekt_next/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  arkitekt_next/cli/commands/call/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -136,8 +136,8 @@ arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
136
136
  arkitekt_next/service_registry.py,sha256=0Qt3PNPRBlhIGWMeB04ZVmOmNI-cFCt_o2F6UrplKA8,3577
137
137
  arkitekt_next/tqdm.py,sha256=FgrwpAwFTXBTEPY4rS7K4Gs8Wdjp74mUk4_OEU8hWZM,1526
138
138
  arkitekt_next/utils.py,sha256=csBRBnxnErMRTilNBYAtIe0lPBb6E3uplqwsVGs5Wkk,2390
139
- arkitekt_next-0.7.55.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
140
- arkitekt_next-0.7.55.dist-info/METADATA,sha256=nC0XD_3qojKqBemanOiKO65VKHMfpK_Jf_2BRtOqIFs,5975
141
- arkitekt_next-0.7.55.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
142
- arkitekt_next-0.7.55.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
143
- arkitekt_next-0.7.55.dist-info/RECORD,,
139
+ arkitekt_next-0.7.57.dist-info/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
140
+ arkitekt_next-0.7.57.dist-info/METADATA,sha256=lkONFqbROSQOGCln4mmJqj4UMDMFZAe8Y7R8PKATo6E,6084
141
+ arkitekt_next-0.7.57.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
142
+ arkitekt_next-0.7.57.dist-info/entry_points.txt,sha256=-hxikQx4xZ6TiOnWVDOlTN_kcAISgGFvTHXIchsCHSc,60
143
+ arkitekt_next-0.7.57.dist-info/RECORD,,