10 ms·
Displaying inferred types inline is a killer feature (inspired from rust lang server?). It was a pleasant surprise! It's fast too as promised. However, it doe
by pcwelder 9mo ago
Displaying inferred types inline is a killer feature (inspired from rust lang server?). It was a pleasant surprise!
It's fast too as promised.
However, it doesn't work well with TypedDicts and that's a show-stopper for us. Hoping to see that support soon.
- sharkdp 9mo agoWe should generally support TypeDicts. Can you go into more details of what is not working for you?
- pcwelder 9mo ago``` from anthropic.types import MessageParam data: list[MessageParam] = [{"role": "user", "content": [{"type": "text", "text": ""}]}] ``` This for example works both in mypy and pyright. (Also autocompletion of typedict keys / literals from pylance is missing)
- sharkdp 9mo agoThank you! I reported this as https://github.com/astral-sh/ty/issues/1994 https://github.com/astral-sh/ty/issues/1994 Support for auto-completing TypedDict keys is tracked here: https://github.com/astral-sh/ty/issues/86 https://github.com/astral-sh/ty/issues/86