-
When consumers configure their AI models to use data streaming (vs waiting for the entire response), the chatbot should provide a visual cue element that trails the incoming response, as it renders.
…
-
### Describe the bug
The following code:
```py
import asyncio
await asyncio.sleep(10)
```
cannot be interrupted: the cell runs until complete and then shows a `CancelledError`.
### Environment
```…
-
Hi we're utilizing a helper class to parse over the paginated lists as so:
```python
from typing import Any, Callable, ParamSpec, TypeVar
from merge.client import Merge
from merge.core import …
-
**Description**
Defining an object using an external file $ref gives different typing outputs for schemas with keys that have defaults defined. Object keys are incorrectly marked as required/non o…
-
The signatures of the two `loads` overloads in `SchemaF` make it impossible for mypy to correctly determine which overload to apply to a call to `loads()` because the `many` argument is optional for b…
-
It could be a local entity with three dots that shows above user's head when they are typing. Its presence would be enabled by default and toggleable in chat app settings.
-
Only `name` and `slug` are available.
```
class CollectionItemFieldData(pydantic.BaseModel):
name: typing.Optional[str] = pydantic.Field(description="Name of the Item")
slug: typing.Opti…
-
### Describe the bug
In langfuse_decorator.py there is a typing Callable, but mypy identify it as Any, therefore @observe changes original function/methods type.
```
# For users with mypy type c…
-
I have noticed that the Antrl4 generated files (target python3) are using implicit optional on almost all its method declarations. An example is:
`def variableModifier(self, i:int=None):`
While th…
-
Currently this library requires Python 3.10, but does not specify this in setup.py.
For example with Python 3.9, I receive
```python
Python 3.9.17 | packaged by conda-forge | (main, Aug 10 2023, …