ommlds 0.0.0.dev500__py3-none-any.whl → 0.0.0.dev501__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.
- ommlds/cli/sessions/chat/interfaces/textual/app.py +1 -1
- ommlds/minichain/__init__.py +9 -2
- ommlds/minichain/_dataclasses.py +337 -81
- ommlds/minichain/backends/impls/openai/format.py +1 -1
- ommlds/minichain/chat/messages.py +1 -1
- ommlds/minichain/chat/stream/joining.py +36 -12
- ommlds/minichain/chat/transforms/metadata.py +3 -3
- ommlds/minichain/content/standard.py +1 -1
- ommlds/minichain/content/transform/json.py +1 -1
- ommlds/minichain/content/transform/metadata.py +1 -1
- ommlds/minichain/content/transform/standard.py +2 -2
- ommlds/minichain/content/transform/strings.py +1 -1
- ommlds/minichain/content/transform/templates.py +1 -1
- ommlds/minichain/metadata.py +13 -16
- ommlds/minichain/services/__init__.py +155 -0
- ommlds/minichain/services/_marshal.py +46 -10
- ommlds/minichain/services/_origclasses.py +11 -0
- ommlds/minichain/services/_typedvalues.py +8 -3
- ommlds/minichain/services/requests.py +73 -3
- ommlds/minichain/services/responses.py +73 -3
- ommlds/minichain/services/services.py +9 -0
- ommlds/minichain/tools/reflect.py +3 -3
- ommlds/minichain/wrappers/instrument.py +146 -0
- ommlds/minichain/wrappers/services.py +26 -0
- {ommlds-0.0.0.dev500.dist-info → ommlds-0.0.0.dev501.dist-info}/METADATA +4 -4
- {ommlds-0.0.0.dev500.dist-info → ommlds-0.0.0.dev501.dist-info}/RECORD +30 -29
- {ommlds-0.0.0.dev500.dist-info → ommlds-0.0.0.dev501.dist-info}/WHEEL +0 -0
- {ommlds-0.0.0.dev500.dist-info → ommlds-0.0.0.dev501.dist-info}/entry_points.txt +0 -0
- {ommlds-0.0.0.dev500.dist-info → ommlds-0.0.0.dev501.dist-info}/licenses/LICENSE +0 -0
- {ommlds-0.0.0.dev500.dist-info → ommlds-0.0.0.dev501.dist-info}/top_level.txt +0 -0
ommlds/minichain/__init__.py
CHANGED
|
@@ -427,11 +427,18 @@ with _lang.auto_proxy_init(
|
|
|
427
427
|
##
|
|
428
428
|
|
|
429
429
|
from .services import ( # noqa
|
|
430
|
+
ServiceFacade,
|
|
431
|
+
facade,
|
|
432
|
+
|
|
433
|
+
RequestMetadata,
|
|
434
|
+
RequestMetadatas,
|
|
430
435
|
Request,
|
|
436
|
+
|
|
437
|
+
ResponseMetadata,
|
|
438
|
+
ResponseMetadatas,
|
|
431
439
|
Response,
|
|
440
|
+
|
|
432
441
|
Service,
|
|
433
|
-
ServiceFacade,
|
|
434
|
-
facade,
|
|
435
442
|
)
|
|
436
443
|
|
|
437
444
|
##
|