Kartik Shetty

Results 7 comments of Kartik Shetty

[DisclaimerModal](https://github.com/huggingface/chat-ui/blob/main/src/lib/components/DisclaimerModal.svelte), [LoginModal](https://github.com/huggingface/chat-ui/blob/main/src/lib/components/LoginModal.svelte) and [SystemPromptModal](https://github.com/huggingface/chat-ui/blob/main/src/lib/components/SystemPromptModal.svelte) don't have darkmode either.

> > Adding Infinite scroll > > @KartikGS How you tested it?? Can you please tell Currently 300 conversations are being fetched. Reduce the [limit](https://github.com/KartikGS/chat-ui/blob/f1a56a180435cfd1c57dce2c8eb6f5be7626b5e4/src/routes/%2Blayout.server.ts#L77) and [total](https://github.com/KartikGS/chat-ui/blob/f1a56a180435cfd1c57dce2c8eb6f5be7626b5e4/src/routes/%2Blayout.svelte#L39) to 15, set...

`convUpdate`- After starting a new conversation consistency is maintained as [fetchData](https://github.com/KartikGS/chat-ui/blob/f1a56a180435cfd1c57dce2c8eb6f5be7626b5e4/src/routes/%2Blayout.svelte#L163) is called, that is not the case when you continue or retry conversations in `extraConversations`. Using the new store...

Made pr #782 for similar issue #746 a while ago, not consistent anymore.

Will the default embedding model setting be inserted in the database every time the server restarts?

This [line](https://github.com/huggingface/chat-ui/blob/46161b9c48ea59e77e53ab8cad4b67674d031e94/src/lib/server/auth.ts#L54) is confusing me. sameSite: dev || env.ALLOW_INSECURE_COOKIES === "true" ? "lax" : "none", secure: !dev && !(env.ALLOW_INSECURE_COOKIES === "true") Shouldn't the `none` be `strict` or `none` and `lax`...

It works for me with the following change in code: `sameSite: dev || env.ALLOW_INSECURE_COOKIES === "true" ? "none" : "lax", secure: true,` in auth.ts, instead of: `sameSite: dev || env.ALLOW_INSECURE_COOKIES...