mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
fix: update mention suggestion filtering logic (#1763)
Issue: https://github.com/StanGirard/quivr/issues/1762 Demo: https://github.com/StanGirard/quivr/assets/63923024/c578b9f0-5b1d-4196-85cf-042a93acd9c6
This commit is contained in:
parent
a84219f193
commit
00f11f93f2
@ -79,11 +79,13 @@ export const useMentionConfig = ({
|
||||
});
|
||||
},
|
||||
onUpdate: (props) => {
|
||||
reactRenderer?.updateProps(props);
|
||||
|
||||
if (!props.clientRect) {
|
||||
return;
|
||||
}
|
||||
reactRenderer?.updateProps({
|
||||
...props,
|
||||
suggestionData: {
|
||||
...suggestionData,
|
||||
items: props.items,
|
||||
},
|
||||
});
|
||||
},
|
||||
onKeyDown: (props) => {
|
||||
if (props.event.key === "Escape") {
|
||||
|
@ -4,10 +4,9 @@ import { CopyButton } from "./components/CopyButton";
|
||||
import { MessageContent } from "./components/MessageContent";
|
||||
import { QuestionBrain } from "./components/QuestionBrain";
|
||||
import { QuestionPrompt } from "./components/QuestionPrompt";
|
||||
import { SourcesButton } from './components/SourcesButton'; // Import the new component
|
||||
import { SourcesButton } from "./components/SourcesButton";
|
||||
import { useMessageRow } from "./hooks/useMessageRow";
|
||||
|
||||
|
||||
type MessageRowProps = {
|
||||
speaker: "user" | "assistant";
|
||||
text?: string;
|
||||
@ -38,9 +37,11 @@ export const MessageRow = React.forwardRef(
|
||||
|
||||
const sourcesIndex = messageContent.lastIndexOf("**Sources:**");
|
||||
const hasSources = sourcesIndex !== -1;
|
||||
|
||||
|
||||
if (hasSources) {
|
||||
sourcesContent = messageContent.substring(sourcesIndex + "**Sources:**".length).trim();
|
||||
sourcesContent = messageContent
|
||||
.substring(sourcesIndex + "**Sources:**".length)
|
||||
.trim();
|
||||
messageContent = messageContent.substring(0, sourcesIndex).trim();
|
||||
}
|
||||
|
||||
@ -49,7 +50,7 @@ export const MessageRow = React.forwardRef(
|
||||
<div ref={ref} className={containerClasses}>
|
||||
<div className="flex justify-between items-start w-full">
|
||||
{/* Left section for the question and prompt */}
|
||||
<div className="flex">
|
||||
<div className="flex gap-1">
|
||||
<QuestionBrain brainName={brainName} />
|
||||
<QuestionPrompt promptName={promptName} />
|
||||
</div>
|
||||
@ -74,5 +75,5 @@ export const MessageRow = React.forwardRef(
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
MessageRow.displayName = "MessageRow";
|
||||
|
Loading…
Reference in New Issue
Block a user