Skip to content

Commit

Permalink
React: fix llm naming
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed Apr 23, 2024
1 parent 0185d24 commit cc0ac5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/chat/editors/react-tangent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function runReActUpdatingState(cHandler: ConversationHandler, quest
}

// create a blank and 'typing' message for the assistant - to be filled when we're done
const assistantModelLabel = 'react-' + assistantLlmId.slice(4, 7); // HACK: this is used to change the Avatar animation
const assistantModelLabel = 'react-' + assistantLlmId; //.slice(4, 7); // HACK: this is used to change the Avatar animation
const assistantMessageId = cHandler.messageAppendAssistant(STREAM_TEXT_INDICATOR, undefined, assistantModelLabel, true);
const { enableReactTool: enableBrowse } = useBrowseStore.getState();

Expand Down

0 comments on commit cc0ac5a

Please sign in to comment.