ommlds 0.0.0.dev498__py3-none-any.whl → 0.0.0.dev500__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.
@@ -252,7 +252,7 @@
252
252
  "module": ".minichain.backends.impls.groq.chat",
253
253
  "attr": null,
254
254
  "file": "ommlds/minichain/backends/impls/groq/chat.py",
255
- "line": 26,
255
+ "line": 27,
256
256
  "value": {
257
257
  "!.minichain.registries.manifests.RegistryManifest": {
258
258
  "module": "ommlds.minichain.backends.impls.groq.chat",
@@ -291,7 +291,7 @@
291
291
  "module": ".minichain.backends.impls.groq.stream",
292
292
  "attr": null,
293
293
  "file": "ommlds/minichain/backends/impls/groq/stream.py",
294
- "line": 33,
294
+ "line": 34,
295
295
  "value": {
296
296
  "!.minichain.registries.manifests.RegistryManifest": {
297
297
  "module": "ommlds.minichain.backends.impls.groq.stream",
ommlds/__about__.py CHANGED
@@ -59,7 +59,7 @@ class Project(ProjectBase):
59
59
  ],
60
60
 
61
61
  'pillow': [
62
- 'pillow ~= 12.0',
62
+ 'pillow ~= 12.1',
63
63
  ],
64
64
 
65
65
  'search': [
@@ -56,6 +56,8 @@ class AnthropicSseDecoderEvents(lang.Namespace):
56
56
  delta: Delta
57
57
  usage: Usage
58
58
 
59
+ context_management: ta.Mapping[str, ta.Any] | None = None
60
+
59
61
  @dc.dataclass(frozen=True)
60
62
  class MessageStop(MessageEvent):
61
63
  pass
@@ -0,0 +1,9 @@
1
+ import typing as ta
2
+
3
+
4
+ ##
5
+
6
+
7
+ REQUIRED_HTTP_HEADERS: ta.Mapping[bytes, bytes] = {
8
+ b'User-Agent': b'python-httpx/0.28.1', # required or it 403's lol
9
+ }
@@ -23,7 +23,7 @@ class FirstInWinsBackendProvider(BackendProvider[ServiceT]):
23
23
  def provide_backend(self) -> ta.AsyncContextManager[ServiceT]:
24
24
  @contextlib.asynccontextmanager
25
25
  async def inner():
26
- from ...minichain.meta.firstinwins import AsyncioFirstInWinsService
26
+ from ...minichain.wrappers.firstinwins import AsyncioFirstInWinsService
27
27
 
28
28
  async with contextlib.AsyncExitStack() as aes:
29
29
  svcs = [