Michael Oliver
Michael Oliver
> Adding onto this because it's somewhat related. > > Is there currently no way to use `MDXProvider`'s custom components without client-side rendering? It seems a little bit silly that...
Latest canary release includes a fix to run MDX components on the server https://github.com/vercel/next.js/pull/44651
It would be great if type checkers were able to infer the return types of functions as typed dicts if returning literal dicts e.g. ```python def foo(): return { "foo:...
Maybe relevant, Something akin to tsconfig.json extends? https://www.typescriptlang.org/tsconfig#extends
This is great suggestion! Something related would be the ability to sort collections that use enums as keys similar to the undocumented `isort` options to sort collections with string keys....
Primarily the Twoslash queries and tooltips with type information. There is some overlap as Twoslash includes support for highlighting lines etc so that could be omitted. Admittedly the integration may...
Unfortunately its closed source docs and behind a login. Maybe we could find open source examples using GitHub's code search? e.g. searching for `remark-shiki-twoslash` inside a `package.json` file. Query: ```...
This might be useful https://github.com/antfu/shikiji/tree/main/packages/shikiji-twoslash
I am getting this error in my CI environment, how do I fix it? ``` $ curl -LsSf https://astral.sh/uv/install.sh | sh downloading uv 0.4.6 x86_64-unknown-linux-gnu installing to /root/.cargo/bin uv uvx...
How can I use tool calling along with `generateObject`? My structured output requires some lookups to generate its data, how can I work around this for now?