-
### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
Similar to #7987, TypedDict schema building currently also relies on `typing.get_type_hints`. The main issue for …
-
pyright's has experimental support for inline `TypedDict` syntax:
```py
foo: dict[{"foo": int}]
```
(although [it will probably be removed from pyright in the future](https://github.com/python/m…
-
The following code:
```python
class ExampleTypedDict(typing.TypedDict):
field1: int
field2: str
```
Results in `unused variable 'field1' (60% confidence)` (same for field2).
As this i…
-
**Feature**
Allow for TypedDicts (or a new type specialized for this purpose) to be compatible with dict when the receiver declares it is not going to mutate the dict.
**Pitch**
When using a …
zr40 updated
2 months ago
-
Several `TypedDict`s in `ops/pebble.py` represent values returned from Pebble. Generally pebble will simply omit an optional field if it is not set (but we need to confirm this for each one). Due to l…
-
### Description of the bug:
Hello, I'm trying to recreate the example at: https://github.com/google-gemini/cookbook/blob/main/examples/json_capabilities/Text_Summarization.ipynb. After specifying…
-
I was wondering if there is any interest in specifying the types of each response instead of just using `Any`. The types could be taken from the official API written in Typescript. I looked through #9…
-
### Things to check first
- [X] I have searched the existing issues and didn't find my bug already reported there
- [X] I have checked that my bug is still present in the latest release
### Typegu…
-
It would be great if I could use TypedDict ([PEP 589](https://www.python.org/dev/peps/pep-0589/)) equivalent for my type definition of Box.
I'm very new to python, so perhaps there is already a way…
-
### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the [LangGraph](https://langchain-ai.github.io/langgraph/)/LangChain documentation with the integrat…