-
Setup code:
```python
from typing import Literal, TypedDict
class D(TypedDict):
first: int
second: str
v: Literal['first', 'second']
d: D
```
Currently, Pyright offers `'first'` and…
-
## Issue Description
In the current auto-scaler logic, `ModelStates` are aggregations of an OasisModel and its queued/running analyses
```
class ModelState(TypedDict):
"""
Used in the mo…
-
I may be in a need of the following - two ``TypeDict``s with the same keys, one of them created with ``total=False``:
```python
from mypy_extensions import TypedDict
Details = TypedDict('Detail…
-
Type: Bug
# Behaviour
## Expected vs. Actual
If I create a TypedDict and reference one of its keys somewhere, I expect that key to change when I rename it in the TypedDict definition.
## S…
-
Hi,
I am using bcbio since a few years and it always worked nicely but last week after upgrading the tool I run a variant calling pipeline and got an error when running multiqc. I don't think it's …
-
**Bug Report**
For [Pulumi](https://github.com/pulumi/pulumi/) we are looking into generating types using TypedDict to model cloud APIs. For example for Kubernetes we have something represe…
-
### Bug description
```python
# pylint: disable=missing-class-docstring,missing-module-docstring
import typing
class A(typing.TypedDict):
a: int
class B(typing.TypedDict):
b…
-
I found this useful, perhaps we should add it to `capfire`?
```py
class TraceSummary(TypedDict):
id: int
message: str
children: NotRequired[list[TraceSummary]]
@dataclass(init…
-
### Checks
- [X] I have checked that this issue has not already been reported.
- [X] I have confirmed this bug exists on the [latest version](https://pypi.org/project/polars/) of Polars.
### Re…
-
ToolCall is not generating from the response of llama 3.1 model from LM Studio, when using langchain framework connecting through ChatOpenAI ,
Same Tool call is working fine with ollama for the same …