You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In src/routes/conversation/[id]/+page.svelte on line 275, there is an href call to load katex from an external cdn.
It looks like this may no longer be needed with the introduction of the MarkdownRenderer component (commit 69a7610). Trying to fetch this external resource when behind a firewall may cause slowdowns the first time a chat message is sent.
Steps to reproduce
Launch the chat-ui behind a firewall that does not have access to the external internet
Open your browsers inspection tool and watch the network requests
Send a chate message
Notice that the request for the katex.min.css may take a while to timeout
I have removed the <link> component that is trying to load the katex stylesheet. I believe I am able to still get latex markdown generated without it, but someone more familiar with the codebase might know if this <link> component is still needed.
Thanks for releasing this!
The text was updated successfully, but these errors were encountered:
Bug description
In
src/routes/conversation/[id]/+page.svelte
on line 275, there is an href call to load katex from an external cdn.It looks like this may no longer be needed with the introduction of the
MarkdownRenderer
component (commit 69a7610). Trying to fetch this external resource when behind a firewall may cause slowdowns the first time a chat message is sent.Steps to reproduce
katex.min.css
may take a while to timeoutScreenshots
N/A
Context
Logs
N/A
Specs
Config
N/A
Notes
I have removed the
<link>
component that is trying to load the katex stylesheet. I believe I am able to still get latex markdown generated without it, but someone more familiar with the codebase might know if this<link>
component is still needed.Thanks for releasing this!
The text was updated successfully, but these errors were encountered: