ommlds 0.0.0.dev452__py3-none-any.whl → 0.0.0.dev454__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 ommlds might be problematic. Click here for more details.

@@ -1,8 +1,9 @@
1
+ import typing as ta
2
+
1
3
  from omlish import dataclasses as dc
2
4
  from omlish import lang
3
5
  from omlish import marshal as msh
4
6
  from omlish import reflect as rfl
5
- from omlish.funcs import match as mfs
6
7
  from omlish.typedvalues.marshal import build_typed_values_marshaler
7
8
  from omlish.typedvalues.marshal import build_typed_values_unmarshaler
8
9
 
@@ -13,21 +14,19 @@ from .json import JsonValue
13
14
 
14
15
 
15
16
  @dc.dataclass()
16
- class _TypedValuesFieldMarshalerFactory(msh.MarshalerFactoryMatchClass):
17
+ class _TypedValuesFieldMarshalerFactory(msh.MarshalerFactory):
17
18
  tvs_rty: rfl.Type
18
19
 
19
- @mfs.simple(lambda _, ctx, rty: True)
20
- def _build(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
21
- return build_typed_values_marshaler(ctx, self.tvs_rty)
20
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
21
+ return lambda: build_typed_values_marshaler(ctx, self.tvs_rty)
22
22
 
23
23
 
24
24
  @dc.dataclass()
25
- class _TypedValuesFieldUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
25
+ class _TypedValuesFieldUnmarshalerFactory(msh.UnmarshalerFactory):
26
26
  tvs_rty: rfl.Type
27
27
 
28
- @mfs.simple(lambda _, ctx, rty: True)
29
- def _build(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
30
- return build_typed_values_unmarshaler(ctx, self.tvs_rty)
28
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
29
+ return lambda: build_typed_values_unmarshaler(ctx, self.tvs_rty)
31
30
 
32
31
 
33
32
  ##
@@ -37,16 +36,18 @@ class MarshalJsonValue(lang.NotInstantiable, lang.Final):
37
36
  pass
38
37
 
39
38
 
40
- class _JsonValueMarshalerFactory(msh.MarshalerFactoryMatchClass):
41
- @mfs.simple(lambda _, ctx, rty: rty is MarshalJsonValue)
42
- def _build(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
43
- return msh.NopMarshalerUnmarshaler()
39
+ class _JsonValueMarshalerFactory(msh.MarshalerFactory):
40
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
41
+ if rty is not MarshalJsonValue:
42
+ return None
43
+ return lambda: msh.NopMarshalerUnmarshaler()
44
44
 
45
45
 
46
- class _JsonValueUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
47
- @mfs.simple(lambda _, ctx, rty: rty is MarshalJsonValue)
48
- def _build(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
49
- return msh.NopMarshalerUnmarshaler()
46
+ class _JsonValueUnmarshalerFactory(msh.UnmarshalerFactory):
47
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
48
+ if rty is not MarshalJsonValue:
49
+ return None
50
+ return lambda: msh.NopMarshalerUnmarshaler()
50
51
 
51
52
 
52
53
  ##
@@ -74,12 +74,10 @@ def _tv_field_metadata(
74
74
  omit_if=operator.not_,
75
75
  ),
76
76
  marshaler_factory=msh.FuncMarshalerFactory(
77
- lambda ctx, rty: True,
78
- lambda ctx, rty: _marshal._TypedValuesFieldMarshalerFactory(tvs_rty)(ctx, rty), # noqa
77
+ lambda ctx, rty: _marshal._TypedValuesFieldMarshalerFactory(tvs_rty).make_marshaler(ctx, rty), # noqa
79
78
  ),
80
79
  unmarshaler_factory=msh.FuncUnmarshalerFactory(
81
- lambda ctx, rty: True,
82
- lambda ctx, rty: _marshal._TypedValuesFieldUnmarshalerFactory(tvs_rty)(ctx, rty), # noqa
80
+ lambda ctx, rty: _marshal._TypedValuesFieldUnmarshalerFactory(tvs_rty).make_unmarshaler(ctx, rty), # noqa
83
81
  ),
84
82
  ),
85
83
  }
@@ -6,7 +6,6 @@ from omlish import check
6
6
  from omlish import lang
7
7
  from omlish import marshal as msh
8
8
  from omlish import reflect as rfl
9
- from omlish.funcs import match as mfs
10
9
 
11
10
  from .images import ImageContent # noqa
12
11
  from .json import JsonContent # noqa
@@ -53,10 +52,11 @@ class _ContentMarshaler(msh.Marshaler):
53
52
  raise TypeError(o)
54
53
 
55
54
 
56
- class _ContentMarshalerFactory(msh.MarshalerFactoryMatchClass):
57
- @mfs.simple(lambda _, ctx, rty: rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY)
58
- def _build(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
59
- return _ContentMarshaler(ctx.make(ExtendedContent))
55
+ class _ContentMarshalerFactory(msh.MarshalerFactory):
56
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
57
+ if not (rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY):
58
+ return None
59
+ return lambda: _ContentMarshaler(ctx.make(ExtendedContent))
60
60
 
61
61
 
62
62
  @dc.dataclass(frozen=True)
@@ -74,10 +74,11 @@ class _ContentUnmarshaler(msh.Unmarshaler):
74
74
  raise TypeError(v)
75
75
 
76
76
 
77
- class _ContentUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
78
- @mfs.simple(lambda _, ctx, rty: rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY)
79
- def _build(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
80
- return _ContentUnmarshaler(ctx.make(ExtendedContent))
77
+ class _ContentUnmarshalerFactory(msh.UnmarshalerFactory):
78
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
79
+ if not (rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY):
80
+ return None
81
+ return lambda: _ContentUnmarshaler(ctx.make(ExtendedContent))
81
82
 
82
83
 
83
84
  ##
@@ -104,10 +105,11 @@ class _CanContentMarshaler(msh.Marshaler):
104
105
  return self.c.marshal(ctx, check.isinstance(o, CONTENT_RUNTIME_TYPES))
105
106
 
106
107
 
107
- class _CanContentMarshalerFactory(msh.MarshalerFactoryMatchClass):
108
- @mfs.simple(lambda _, ctx, rty: rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY)
109
- def _build(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
110
- return _CanContentMarshaler(ctx.make(Content))
108
+ class _CanContentMarshalerFactory(msh.MarshalerFactory):
109
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
110
+ if not (rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY):
111
+ return None
112
+ return lambda: _CanContentMarshaler(ctx.make(Content))
111
113
 
112
114
 
113
115
  @dc.dataclass(frozen=True)
@@ -118,10 +120,11 @@ class _CanContentUnmarshaler(msh.Unmarshaler):
118
120
  return self.c.unmarshal(ctx, v)
119
121
 
120
122
 
121
- class _CanContentUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
122
- @mfs.simple(lambda _, ctx, rty: rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY)
123
- def _build(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
124
- return _CanContentUnmarshaler(ctx.make(Content))
123
+ class _CanContentUnmarshalerFactory(msh.UnmarshalerFactory):
124
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
125
+ if not (rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY):
126
+ return None
127
+ return lambda: _CanContentUnmarshaler(ctx.make(Content))
125
128
 
126
129
 
127
130
  ##
@@ -112,7 +112,7 @@ class ContentMaterializer:
112
112
  finally:
113
113
  self._cur_depth -= 1
114
114
 
115
- @dispatch.method
115
+ @dispatch.method()
116
116
  def _materialize(self, o: CanContent) -> Content:
117
117
  raise TypeError(o)
118
118
 
@@ -33,7 +33,7 @@ class ContentInterleaver:
33
33
  cs = lang.interleave(cs, separator)
34
34
  return list(cs)
35
35
 
36
- @dispatch.method
36
+ @dispatch.method()
37
37
  def interleave(self, c: Content) -> Content:
38
38
  return c
39
39
 
@@ -22,7 +22,7 @@ class ContentSqueezer:
22
22
 
23
23
  self._strip_strings = strip_strings
24
24
 
25
- @dispatch.method
25
+ @dispatch.method()
26
26
  def squeeze(self, c: Content) -> ta.Iterable[SingleContent]:
27
27
  raise TypeError(c)
28
28
 
@@ -24,7 +24,7 @@ class ContentStringWriter:
24
24
 
25
25
  self._out = out
26
26
 
27
- @dispatch.method
27
+ @dispatch.method()
28
28
  def write(self, c: Content) -> None:
29
29
  raise TypeError(c)
30
30
 
@@ -2,6 +2,8 @@
2
2
  TODO:
3
3
  - can this for reuse
4
4
  """
5
+ import typing as ta
6
+
5
7
  from omlish import check
6
8
  from omlish import dataclasses as dc
7
9
  from omlish import lang
@@ -14,31 +16,37 @@ from .tokens import Tokens
14
16
  ##
15
17
 
16
18
 
17
- class TokensMarshalerFactory(msh.SimpleMarshalerFactory):
18
- def guard(self, ctx: msh.MarshalContext, rty: rfl.Type) -> bool:
19
- return rty is Tokens
19
+ class TokensMarshalerFactory(msh.MarshalerFactory):
20
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
21
+ if rty is not Tokens:
22
+ return None
20
23
 
21
- def fn(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
22
- rty = check.isinstance(check.is_(rty, Tokens), type)
23
- dc_rfl = dc.reflect(rty)
24
+ dc_rfl = dc.reflect(Tokens)
24
25
  dc_f = check.single(dc_rfl.fields.values())
25
26
  v_rty = rfl.type_(dc_f.type)
26
27
  v_m = ctx.make(v_rty)
27
28
  f_n = dc_f.name
28
- return msh.WrappedMarshaler(lambda _, o: getattr(o, f_n), v_m)
29
+
30
+ def inner() -> msh.Marshaler:
31
+ return msh.WrappedMarshaler(lambda _, o: getattr(o, f_n), v_m)
32
+
33
+ return inner
29
34
 
30
35
 
31
- class TokensUnmarshalerFactory(msh.SimpleUnmarshalerFactory):
32
- def guard(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> bool:
33
- return rty is Tokens
36
+ class TokensUnmarshalerFactory(msh.UnmarshalerFactory):
37
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
38
+ if rty is not Tokens:
39
+ return None
34
40
 
35
- def fn(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
36
- rty = check.isinstance(check.is_(rty, Tokens), type)
37
- dc_rfl = dc.reflect(rty)
41
+ dc_rfl = dc.reflect(Tokens)
38
42
  dc_f = check.single(dc_rfl.fields.values())
39
43
  v_rty = rfl.type_(dc_f.type)
40
44
  v_u = ctx.make(v_rty)
41
- return msh.WrappedUnmarshaler(lambda _, v: rty(v), v_u)
45
+
46
+ def inner() -> msh.Unmarshaler:
47
+ return msh.WrappedUnmarshaler(lambda _, v: Tokens(v), v_u)
48
+
49
+ return inner
42
50
 
43
51
 
44
52
  @lang.static_init
@@ -57,26 +57,30 @@ class _RequestResponseMarshaler(msh.Marshaler):
57
57
  }
58
58
 
59
59
 
60
- class _RequestResponseMarshalerFactory(msh.SimpleMarshalerFactory):
61
- def guard(self, ctx: msh.MarshalContext, rty: rfl.Type) -> bool:
62
- return _is_rr_rty(rty)
60
+ class _RequestResponseMarshalerFactory(msh.MarshalerFactory):
61
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
62
+ if not _is_rr_rty(rty):
63
+ return None
63
64
 
64
- def fn(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
65
65
  if isinstance(rty, type):
66
66
  rty = rfl.type_(rfl.get_orig_class(rty))
67
- if isinstance(rty, rfl.Generic):
68
- v_rty, tv_rty = rty.args
69
- else:
70
- # FIXME: ...
71
- raise TypeError(rty)
72
- v_m: msh.Marshaler | None = None
73
- if not isinstance(v_rty, ta.TypeVar):
74
- v_m = ctx.make(v_rty)
75
- return _RequestResponseMarshaler(
76
- rty,
77
- _get_tv_fld(rty),
78
- v_m,
79
- )
67
+
68
+ def inner() -> msh.Marshaler:
69
+ if isinstance(rty, rfl.Generic):
70
+ v_rty, tv_rty = rty.args
71
+ else:
72
+ # FIXME: ...
73
+ raise TypeError(rty)
74
+ v_m: msh.Marshaler | None = None
75
+ if not isinstance(v_rty, ta.TypeVar):
76
+ v_m = ctx.make(v_rty)
77
+ return _RequestResponseMarshaler(
78
+ rty,
79
+ _get_tv_fld(rty),
80
+ v_m,
81
+ )
82
+
83
+ return inner
80
84
 
81
85
 
82
86
  #
@@ -108,26 +112,29 @@ class _RequestResponseUnmarshaler(msh.Unmarshaler):
108
112
  return cty(v, tvs) # type: ignore
109
113
 
110
114
 
111
- class _RequestResponseUnmarshalerFactory(msh.SimpleUnmarshalerFactory):
112
- def guard(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> bool:
113
- return _is_rr_rty(rty)
114
-
115
- def fn(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
116
- if isinstance(rty, rfl.Generic):
117
- v_rty, tv_rty = rty.args
118
- else:
119
- # FIXME: ...
120
- raise TypeError(rty)
121
- tv_types_set = check.isinstance(tv_rty, rfl.Union).args
122
- tv_ta = tv.TypedValues[ta.Union[*tv_types_set]] # type: ignore
123
- tv_u = ctx.make(tv_ta)
124
- v_u = ctx.make(v_rty)
125
- return _RequestResponseUnmarshaler(
126
- rty,
127
- _get_tv_fld(rty),
128
- v_u,
129
- tv_u,
130
- )
115
+ class _RequestResponseUnmarshalerFactory(msh.UnmarshalerFactory):
116
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
117
+ if not _is_rr_rty(rty):
118
+ return None
119
+
120
+ def inner() -> msh.Unmarshaler:
121
+ if isinstance(rty, rfl.Generic):
122
+ v_rty, tv_rty = rty.args
123
+ else:
124
+ # FIXME: ...
125
+ raise TypeError(rty)
126
+ tv_types_set = check.isinstance(tv_rty, rfl.Union).args
127
+ tv_ta = tv.TypedValues[ta.Union[*tv_types_set]] # type: ignore
128
+ tv_u = ctx.make(tv_ta)
129
+ v_u = ctx.make(v_rty)
130
+ return _RequestResponseUnmarshaler(
131
+ rty,
132
+ _get_tv_fld(rty),
133
+ v_u,
134
+ tv_u,
135
+ )
136
+
137
+ return inner
131
138
 
132
139
 
133
140
  ##
@@ -9,7 +9,6 @@ from omlish import check
9
9
  from omlish import lang
10
10
  from omlish import marshal as msh
11
11
  from omlish import reflect as rfl
12
- from omlish.funcs import match as mfs
13
12
 
14
13
  from .types import Vector
15
14
 
@@ -25,10 +24,11 @@ class _VectorMarshaler(msh.Marshaler):
25
24
  return self.et.marshal(ctx, list(map(float, check.isinstance(o, Vector))))
26
25
 
27
26
 
28
- class _VectorMarshalerFactory(msh.MarshalerFactoryMatchClass):
29
- @mfs.simple(lambda _, ctx, rty: rty is Vector)
30
- def _build(self, ctx: msh.MarshalContext, rty: rfl.Type) -> msh.Marshaler:
31
- return _VectorMarshaler(ctx.make(ta.Sequence[float]))
27
+ class _VectorMarshalerFactory(msh.MarshalerFactory):
28
+ def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
29
+ if rty is not Vector:
30
+ return None
31
+ return lambda: _VectorMarshaler(ctx.make(ta.Sequence[float]))
32
32
 
33
33
 
34
34
  @dc.dataclass(frozen=True)
@@ -39,10 +39,11 @@ class _VectorUnmarshaler(msh.Unmarshaler):
39
39
  return Vector(self.et.unmarshal(ctx, v))
40
40
 
41
41
 
42
- class _VectorUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
43
- @mfs.simple(lambda _, ctx, rty: rty is Vector)
44
- def _build(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> msh.Unmarshaler:
45
- return _VectorUnmarshaler(ctx.make(ta.Sequence[float]))
42
+ class _VectorUnmarshalerFactory(msh.UnmarshalerFactory):
43
+ def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
44
+ if rty is not Vector:
45
+ return None
46
+ return lambda: _VectorUnmarshaler(ctx.make(ta.Sequence[float]))
46
47
 
47
48
 
48
49
  ##
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ommlds
3
- Version: 0.0.0.dev452
3
+ Version: 0.0.0.dev454
4
4
  Summary: ommlds
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
@@ -14,8 +14,8 @@ Classifier: Programming Language :: Python :: 3.13
14
14
  Requires-Python: >=3.13
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: omdev==0.0.0.dev452
18
- Requires-Dist: omlish==0.0.0.dev452
17
+ Requires-Dist: omdev==0.0.0.dev454
18
+ Requires-Dist: omlish==0.0.0.dev454
19
19
  Provides-Extra: all
20
20
  Requires-Dist: llama-cpp-python~=0.3; extra == "all"
21
21
  Requires-Dist: mlx~=0.29; extra == "all"
@@ -107,8 +107,8 @@ ommlds/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
107
  ommlds/datasets/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  ommlds/datasets/lib/movies.py,sha256=LmdfoXsZU9XMM_r-sxCLv_s06BFzwWO4xUj6sc9XVcI,1961
109
109
  ommlds/minichain/__init__.py,sha256=5pHq8Tlhgqx5p9ilC0EjN8dpOZ2Xc1ADHgwa1V-FFkk,10829
110
- ommlds/minichain/_marshal.py,sha256=dvUi2bEHmAlfWdZ5gJpDWO7duAB9vFXs5kCziMt-QMs,1850
111
- ommlds/minichain/_typedvalues.py,sha256=vPwVYGWtIJT_dclarnZlA-2sjP2o3L2HSDK5VDurYfM,2229
110
+ ommlds/minichain/_marshal.py,sha256=IkEeaYfM2xr9Zh_mIWmE1cdY2DiC9ur6nTwwoaCfkkY,1879
111
+ ommlds/minichain/_typedvalues.py,sha256=Vl1Edt5khC0e5RPFBPmPCxn0IzrfVd0NHzAjAN2E6Kc,2183
112
112
  ommlds/minichain/completion.py,sha256=lQ0LfCIYZsvDqteHhhDIv16D2_gn_xMfEL0ouywE5Yo,1033
113
113
  ommlds/minichain/configs.py,sha256=WwrHxfkDAfo_RtuCqUgySthj-2W26lZbpuQoghUyGNw,167
114
114
  ommlds/minichain/envs.py,sha256=vE2CSeT6KYxOpPY72VbFLzGUnBERYdhfiEUlvSRHkXE,225
@@ -199,10 +199,10 @@ ommlds/minichain/chat/transforms/base.py,sha256=V22SasLdnzvmSO7C19gigi8LKeWVtBHm
199
199
  ommlds/minichain/chat/transforms/metadata.py,sha256=Gw1cUIk2cVzHMyFPwboY_HWEuV_Ts3R4AVmOuyH120A,1563
200
200
  ommlds/minichain/chat/transforms/services.py,sha256=wJw2eu-TU1sVXUYvg7rc7QNn93cCXhtEI_q-KZ5Dz0I,1016
201
201
  ommlds/minichain/content/__init__.py,sha256=nHXG5a6KSoM9xqlvA4jfwVNbCtqV88bg7298PmmNJKA,384
202
- ommlds/minichain/content/_marshal.py,sha256=mKsXFNtJYEsS7hBQ_E2bKlc245bfW-lx-ordcbxY6AY,5841
202
+ ommlds/minichain/content/_marshal.py,sha256=pVmDQ1k_7Z_KxyYjqinvzBPOu768M7QfYtEbaiYFWvE,5947
203
203
  ommlds/minichain/content/images.py,sha256=d69MgAQm9DaslJJIqRJNY3f75t_Ti5aqkGG1Ypi5Iew,426
204
204
  ommlds/minichain/content/json.py,sha256=g4QjFLYJQUE38u5nd1QzNgruwl06efyaBjiq5ehftd0,250
205
- ommlds/minichain/content/materialize.py,sha256=yIGG-VnTm_1NQ0mryNwP01gp35WLcyde6aliNNhkuJ8,5144
205
+ ommlds/minichain/content/materialize.py,sha256=GHfDIj0mTt1EkCHxqteNN_zLmPawZ3-GFt5ZaAg3tLs,5146
206
206
  ommlds/minichain/content/metadata.py,sha256=FcWW8YbtDEz5rmucvfqjMTC4aA6rO2WQJtP0lX_DShs,248
207
207
  ommlds/minichain/content/namespaces.py,sha256=KkIrwQZ_9bojw5ytkNX8-5FI4ZdCEAEnMAUElx6p51Y,95
208
208
  ommlds/minichain/content/placeholders.py,sha256=NMl2m5yVVv9fnNinyXP_UKoa7ZDUIArZqwbbj5f96yI,526
@@ -213,9 +213,9 @@ ommlds/minichain/content/text.py,sha256=kcadL2Ojq7AwNdT_vMk5EhOC3mZpFTFpKbMjdkfU
213
213
  ommlds/minichain/content/types.py,sha256=fJhf55HNJP-tTKf_yd_n_4XFBmJkoNF912NU0-QyQDU,575
214
214
  ommlds/minichain/content/transforms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
215
  ommlds/minichain/content/transforms/base.py,sha256=omdEId9FZbeCk8Aak-oMJpMiY4vK4nrQWAbhzmsHZkc,1054
216
- ommlds/minichain/content/transforms/interleave.py,sha256=dOuVrJwKFA87Qn9nP_yDNaxtr5bnB-9l5XjFty8xgZA,2254
217
- ommlds/minichain/content/transforms/squeeze.py,sha256=WDUfhyUzEsD1z7OTto1jbmN6XBK5QLWUU4I58E_dDpc,1670
218
- ommlds/minichain/content/transforms/stringify.py,sha256=1rq6ieOrzi31Fcdj92Bsldap0opQ7CbvRh2w4WItD1A,1235
216
+ ommlds/minichain/content/transforms/interleave.py,sha256=ULrVlPpm_cEvrnObQ70OJgobVfKh5GwxxkvFWpP1DMM,2256
217
+ ommlds/minichain/content/transforms/squeeze.py,sha256=Bf9lKjR3pRQBT0BabH8YRRlR31KO8tpHQX_mzWsxT3U,1672
218
+ ommlds/minichain/content/transforms/stringify.py,sha256=-DhAkRQeRzh-ULQFP25HipyKdrR1lKooGEyw6BwEg-w,1237
219
219
  ommlds/minichain/content/transforms/strings.py,sha256=-uEZ8dXnl_5dNfkwedBeUGzCiAWJn-B4DGMeM0hX3dA,466
220
220
  ommlds/minichain/docs/__init__.py,sha256=vNpT6sA5YDalFqsCFn0DjUvarxRtRl3w2V9liEU0CQk,364
221
221
  ommlds/minichain/docs/docs.py,sha256=Ex7hiqaiYDB9hQhUjuzot8MFktl3LIGG41YBFaNoC80,1340
@@ -245,7 +245,7 @@ ommlds/minichain/lib/todo/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
245
245
  ommlds/minichain/lib/todo/tools/read.py,sha256=7P8ohR-t9y9f_iF-kr0JA36ti0LhJCeBpMsnXeXwHoU,1501
246
246
  ommlds/minichain/lib/todo/tools/write.py,sha256=TGO-zuF62j61pB8tFxd9wdtMHrYuVvnwnjinMOOGabk,14734
247
247
  ommlds/minichain/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
248
- ommlds/minichain/llms/_marshal.py,sha256=qOnr_E4nFfXLzYMO9NKbfhE-iqbvD860xMJ0OWBJN6E,1462
248
+ ommlds/minichain/llms/_marshal.py,sha256=gl5q43NvIQluGCwIvkE8I_2xLrUyix8EgiEY2yTaW2s,1474
249
249
  ommlds/minichain/llms/tokens.py,sha256=RPrAzf4Qx9xNPGj7_EkzcVOR9qIGkhQg8AM6qhr7gfw,292
250
250
  ommlds/minichain/llms/types.py,sha256=DQU9tnzqDoiKuZIImuFVBy9LxOk69k6dDlFQ5DYT7iw,1049
251
251
  ommlds/minichain/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -258,7 +258,7 @@ ommlds/minichain/registries/globals.py,sha256=oibPBjAO1MMemcaV6NdOLGenjB820sBvdL
258
258
  ommlds/minichain/registries/manifests.py,sha256=GTWk4lssAk8mmG3ilGK2NvIU-rGS3otOZNuGQUDStMI,362
259
259
  ommlds/minichain/registries/registry.py,sha256=wmk88NsM20Kl4PduX3Oy5roHPfNKtXENCITTc7M8gAY,4626
260
260
  ommlds/minichain/services/__init__.py,sha256=gjhYyT7-MY1PISdHMKmfk2o_QrdU7UV7I9ZNh2Yjpu4,336
261
- ommlds/minichain/services/_marshal.py,sha256=SBfGRefD3sLRyLZZuq5NSLkLuaRIUmMIF5LxBXQwsQc,4024
261
+ ommlds/minichain/services/_marshal.py,sha256=9ZwlqYpcEOTNPsMFxAaEsSJjMRIi-SGm_h8HWdavtHw,4231
262
262
  ommlds/minichain/services/_origclasses.py,sha256=E9DBfnodZ5_5DlEfzQfRDyzzy_OqE48kWka070GUdgI,1405
263
263
  ommlds/minichain/services/_typedvalues.py,sha256=pptoba24KreotiXtRtxmWtcjRM5o7nObLfkOl6q8dmA,2842
264
264
  ommlds/minichain/services/facades.py,sha256=zoTY5GT7yIrFUY3fX7a-sSOvkk1_4GK5FlJJmRL_ems,1734
@@ -297,7 +297,7 @@ ommlds/minichain/tools/execution/errors.py,sha256=-fE4yh-PsKQqYMyZW0CZMZIjXkJHLZ
297
297
  ommlds/minichain/tools/execution/executors.py,sha256=cyx7JKKQfuqSVujNLXSo0qtXSkCDJ_plddvitmDUxeQ,1365
298
298
  ommlds/minichain/tools/execution/reflect.py,sha256=3X9OS66aY5-vvolgfGaocasc7H9ksjSX2Ryd78xRl-Y,1779
299
299
  ommlds/minichain/vectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
- ommlds/minichain/vectors/_marshal.py,sha256=t1r8XOylT9zgfgTKQozTFVa13-R0HFbPy5Jc_K3q4UI,1489
300
+ ommlds/minichain/vectors/_marshal.py,sha256=NPo43_Z6vsmnDngRmzte_uowOaOoRmkjmQiseKHIlZU,1519
301
301
  ommlds/minichain/vectors/embeddings.py,sha256=_r5DcCaTI-we_XLAHcPv-1PsKI-i-ndptn_qOJ9_fbc,1000
302
302
  ommlds/minichain/vectors/index.py,sha256=NFUeVffjQZd6HILpLEd8tKBLmVKl-2ZTjtsr91ah6VA,1135
303
303
  ommlds/minichain/vectors/search.py,sha256=27MTUiVT2xmSnmgJTAR09oQaiNRh1ixj0mGZVuSTVEg,1508
@@ -325,9 +325,9 @@ ommlds/wiki/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
325
325
  ommlds/wiki/utils/io.py,sha256=UKgDJGtmpnWvIqVd2mJc2QNPOqlToEY1GEveNp6_pMo,7088
326
326
  ommlds/wiki/utils/progress.py,sha256=EhvKcMFYtsarCQhIahlO6f0SboyAKP3UwUyrnVnP-Vk,3222
327
327
  ommlds/wiki/utils/xml.py,sha256=vVV8Ctn13aaRM9eYfs9Wd6rHn5WOCEUzQ44fIhOvJdg,3754
328
- ommlds-0.0.0.dev452.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
329
- ommlds-0.0.0.dev452.dist-info/METADATA,sha256=XECVBChXuKR9UII1l1TutvCfbgm2_CZ4FzvyqkN26X4,3224
330
- ommlds-0.0.0.dev452.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
331
- ommlds-0.0.0.dev452.dist-info/entry_points.txt,sha256=Z5YWtX7ClfiCKdW-dd_CSVvM0h4yQpJPi-2G3q6gNFo,35
332
- ommlds-0.0.0.dev452.dist-info/top_level.txt,sha256=Rbnk5d5wi58vnAXx13WFZqdQ4VX8hBCS2hEL3WeXOhY,7
333
- ommlds-0.0.0.dev452.dist-info/RECORD,,
328
+ ommlds-0.0.0.dev454.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
329
+ ommlds-0.0.0.dev454.dist-info/METADATA,sha256=ItNuhU9x9jpv9HBnnuBzlqj63xfapYFEumGJgNABxXw,3224
330
+ ommlds-0.0.0.dev454.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
331
+ ommlds-0.0.0.dev454.dist-info/entry_points.txt,sha256=Z5YWtX7ClfiCKdW-dd_CSVvM0h4yQpJPi-2G3q6gNFo,35
332
+ ommlds-0.0.0.dev454.dist-info/top_level.txt,sha256=Rbnk5d5wi58vnAXx13WFZqdQ4VX8hBCS2hEL3WeXOhY,7
333
+ ommlds-0.0.0.dev454.dist-info/RECORD,,