pydantic-ai-slim 0.0.24__py3-none-any.whl → 0.0.26__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 pydantic-ai-slim might be problematic. Click here for more details.

pydantic_ai/_utils.py CHANGED
@@ -85,7 +85,7 @@ async def group_by_temporal(
85
85
  ) -> AsyncIterator[AsyncIterable[list[T]]]:
86
86
  """Group items from an async iterable into lists based on time interval between them.
87
87
 
88
- Effectively debouncing the iterator.
88
+ Effectively, this debounces the iterator.
89
89
 
90
90
  This returns a context manager usable as an iterator so any pending tasks can be cancelled if an error occurs
91
91
  during iteration.