Skip to content

Commit

Permalink
Merge pull request #237 from iceljc/features/refine-chat-window
Browse files Browse the repository at this point in the history
Features/refine chat window
  • Loading branch information
iceljc authored Oct 4, 2024
2 parents f446a16 + 098a451 commit 78c534b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/chat/[agentId]/[conversationId]/chat-box.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
const params = $page.params;
const messageLimit = 100;
const screenWidthThreshold = 1024;
const maxTextLength = 4096;
const maxTextLength = 64000;
/** @type {import('$agentTypes').AgentModel} */
export let agent;
Expand Down Expand Up @@ -221,6 +221,7 @@
isCreatingNewConv = false;
if (conv && !!e.data.text) {
dialogs = [];
await signalr.stop();
await signalr.start(conv.id);
isLoading = true;
openFrame();
Expand Down

0 comments on commit 78c534b

Please sign in to comment.