ommlds 0.0.0.dev453__py3-none-any.whl → 0.0.0.dev455__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.MarshalFactoryContext, 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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
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.MarshalFactoryContext, 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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
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.MarshalFactoryContext, 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_marshaler(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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
79
+ if not (rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY):
80
+ return None
81
+ return lambda: _ContentUnmarshaler(ctx.make_unmarshaler(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.MarshalFactoryContext, 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_marshaler(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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
125
+ if not (rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY):
126
+ return None
127
+ return lambda: _CanContentUnmarshaler(ctx.make_unmarshaler(Content))
125
128
 
126
129
 
127
130
  ##
@@ -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.MarshalFactoryContext, 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
- v_m = ctx.make(v_rty)
27
+ v_m = ctx.make_marshaler(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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
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
- v_u = ctx.make(v_rty)
41
- return msh.WrappedUnmarshaler(lambda _, v: rty(v), v_u)
44
+ v_u = ctx.make_unmarshaler(v_rty)
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
@@ -40,14 +40,14 @@ class _RequestResponseMarshaler(msh.Marshaler):
40
40
  def marshal(self, ctx: msh.MarshalContext, o: ta.Any) -> msh.Value:
41
41
  tv_types_set = o._typed_values_info().tv_types_set # noqa # FIXME
42
42
  tv_ta = tv.TypedValues[ta.Union[*tv_types_set]] # type: ignore
43
- tv_m = ctx.make(tv_ta)
43
+ tv_m = ctx.marshal_factory_context.make_marshaler(tv_ta) # FIXME:
44
44
  tv_v = check.isinstance(tv_m.marshal(ctx, o._typed_values), ta.Sequence) # noqa
45
45
 
46
46
  if self.v_m is None:
47
47
  orty: rfl.Generic = check.isinstance(rfl.type_(rfl.get_orig_class(o)), rfl.Generic)
48
48
  check.state(orty.cls in (Request, Response))
49
49
  v_rty, tv_rty = orty.args
50
- v_v = ctx.make(v_rty).marshal(ctx, o.v)
50
+ v_v = ctx.marshal_factory_context.make_marshaler(v_rty).marshal(ctx, o.v) # FIXME
51
51
  else:
52
52
  v_v = self.v_m.marshal(ctx, o.v)
53
53
 
@@ -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.MarshalFactoryContext, 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_marshaler(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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
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_unmarshaler(tv_ta)
129
+ v_u = ctx.make_unmarshaler(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
  ##
@@ -41,7 +41,7 @@ def reflect_tool_catalog_entry(
41
41
  for p in sig.parameters.values():
42
42
  p_rty = rfl.type_(p.annotation)
43
43
  if not no_marshal_check:
44
- msh.global_marshaling().new_unmarshal_context().make(p_rty)
44
+ msh.global_marshaling().new_unmarshal_factory_context().make_unmarshaler(p_rty)
45
45
  in_rtys[p.name] = p_rty
46
46
  tf_input = ToolFn.MarshalInput(in_rtys)
47
47
  else:
@@ -53,7 +53,7 @@ def reflect_tool_catalog_entry(
53
53
  if marshal_output:
54
54
  out_rty = rfl.type_(sig.return_annotation)
55
55
  if not no_marshal_check:
56
- msh.global_marshaling().new_marshal_context().make(out_rty)
56
+ msh.global_marshaling().new_marshal_factory_context().make_marshaler(out_rty)
57
57
  tf_output = ToolFn.MarshalOutput(out_rty)
58
58
  else:
59
59
  if sig.return_annotation is not str:
@@ -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.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
29
+ if rty is not Vector:
30
+ return None
31
+ return lambda: _VectorMarshaler(ctx.make_marshaler(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.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
44
+ if rty is not Vector:
45
+ return None
46
+ return lambda: _VectorUnmarshaler(ctx.make_unmarshaler(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.dev453
3
+ Version: 0.0.0.dev455
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.dev453
18
- Requires-Dist: omlish==0.0.0.dev453
17
+ Requires-Dist: omdev==0.0.0.dev455
18
+ Requires-Dist: omlish==0.0.0.dev455
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=n9PGWrHhvAmGIc7KDOYt3IF9Z6G0ncXskyICTp3Ji6k,1923
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,7 +199,7 @@ 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=ZvdEKtB7a5ZoQgPBjeGleWx-Qr0UAc8LJICRBRjOndA,6035
203
203
  ommlds/minichain/content/images.py,sha256=d69MgAQm9DaslJJIqRJNY3f75t_Ti5aqkGG1Ypi5Iew,426
204
204
  ommlds/minichain/content/json.py,sha256=g4QjFLYJQUE38u5nd1QzNgruwl06efyaBjiq5ehftd0,250
205
205
  ommlds/minichain/content/materialize.py,sha256=GHfDIj0mTt1EkCHxqteNN_zLmPawZ3-GFt5ZaAg3tLs,5146
@@ -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=YR7n2GVhS9I2rDvKe-VqzS-u1WbLcJT9DgFBO6oZ9fo,1518
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=hiO147wK7LcsC0WmqdwltKTOKZdq51J-ESY0JCtqo8s,4374
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
@@ -295,9 +295,9 @@ ommlds/minichain/tools/execution/catalog.py,sha256=sBde49FSClTreX8KO5pZ2-EE1NyTZ
295
295
  ommlds/minichain/tools/execution/context.py,sha256=Gdl1UNjzLQTeIc7m2BlNyLtNsdqCookQv12_WwDDkAI,1872
296
296
  ommlds/minichain/tools/execution/errors.py,sha256=-fE4yh-PsKQqYMyZW0CZMZIjXkJHLZAYyl3j2VYkJ-U,251
297
297
  ommlds/minichain/tools/execution/executors.py,sha256=cyx7JKKQfuqSVujNLXSo0qtXSkCDJ_plddvitmDUxeQ,1365
298
- ommlds/minichain/tools/execution/reflect.py,sha256=3X9OS66aY5-vvolgfGaocasc7H9ksjSX2Ryd78xRl-Y,1779
298
+ ommlds/minichain/tools/execution/reflect.py,sha256=Oklzx5jlMyNj6ivecEQfP6Zt_ICxc-nk-x9xSsxswlg,1817
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=UTUru1dt9uefyn1Rql1VrVivt6OzN24Jpzg210_ouaA,1563
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.dev453.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
329
- ommlds-0.0.0.dev453.dist-info/METADATA,sha256=FnMLzUBvoITUCE2vHisbD9sjix3_m2tsPLibXOwW2EU,3224
330
- ommlds-0.0.0.dev453.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
331
- ommlds-0.0.0.dev453.dist-info/entry_points.txt,sha256=Z5YWtX7ClfiCKdW-dd_CSVvM0h4yQpJPi-2G3q6gNFo,35
332
- ommlds-0.0.0.dev453.dist-info/top_level.txt,sha256=Rbnk5d5wi58vnAXx13WFZqdQ4VX8hBCS2hEL3WeXOhY,7
333
- ommlds-0.0.0.dev453.dist-info/RECORD,,
328
+ ommlds-0.0.0.dev455.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
329
+ ommlds-0.0.0.dev455.dist-info/METADATA,sha256=xuK5xWlPjewCgQwftj8yq4zAA0DNq13gWaTNIc10klQ,3224
330
+ ommlds-0.0.0.dev455.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
331
+ ommlds-0.0.0.dev455.dist-info/entry_points.txt,sha256=Z5YWtX7ClfiCKdW-dd_CSVvM0h4yQpJPi-2G3q6gNFo,35
332
+ ommlds-0.0.0.dev455.dist-info/top_level.txt,sha256=Rbnk5d5wi58vnAXx13WFZqdQ4VX8hBCS2hEL3WeXOhY,7
333
+ ommlds-0.0.0.dev455.dist-info/RECORD,,