Albertbol
Albertbol
Well its was error in i18n middleware: before: ``` locale = req.headers['accept-language'] .split(',')[0] .toLocaleLowerCase() .substring(0, 2) ``` after: ``` if (req.headers['accept-language']) { locale = req.headers['accept-language'] .split(',')[0] .toLocaleLowerCase() .substring(0, 2) }...
> ``` > head: { > link: [ > { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: true }, > { rel: 'dns-prefetch', href: 'https://fonts.gstatic.com', crossorigin: true }, > ], > },...
Hey, thanks for a great package! Any update on this? Would be cool to have the same functionality as the Dismissable widget in a flutter, struggling to merge them together...
Hey, ImageFiltered is not helping out. The idea is to use BackdropFilter on the Sliver list header, for example, to blur everything below like Cupertino. Still, if you open the...
@whoiskatrin Hey 👋 You have exposed the API route https://www.chartgpt.dev/api/parse-graph So you can send post requests without the system prompt that you append on the front end: https://github.com/whoiskatrin/chart-gpt/blob/b456475a16e10e4d482bca62e2bbe5397ef9e0a5/pages/index.tsx#L35 In any...
Try the one I sent you, not a data `graph` but a data `prompt`. ``` curl --location 'https://www.chartgpt.dev/api/parse-graph' \ --header 'Content-Type: application/json' \ --data '{ "prompt": "Hey chat gpt, what...
@whoiskatrin glad to help.
Same here