Spaces:
Running
Running
File size: 6,230 Bytes
e538a38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
import {
ActionIcon,
Alert,
Badge,
Box,
Card,
Group,
ScrollArea,
Text,
Tooltip,
} from "@mantine/core";
import {
IconArrowsMaximize,
IconArrowsMinimize,
IconHandStop,
IconInfoCircle,
IconRefresh,
IconVolume2,
} from "@tabler/icons-react";
import type { PublishFunction } from "create-pubsub";
import { usePubSub } from "create-pubsub/react";
import { type ReactNode, Suspense, lazy, useMemo, useState } from "react";
import { addLogEntry } from "../../modules/logEntries";
import { settingsPubSub } from "../../modules/pubSub";
import { searchAndRespond } from "../../modules/textGeneration";
const FormattedMarkdown = lazy(() => import("./FormattedMarkdown"));
const CopyIconButton = lazy(() => import("./CopyIconButton"));
export default function AiResponseContent({
textGenerationState,
response,
setTextGenerationState,
}: {
textGenerationState: string;
response: string;
setTextGenerationState: PublishFunction<
| "failed"
| "awaitingSearchResults"
| "preparingToGenerate"
| "idle"
| "loadingModel"
| "generating"
| "interrupted"
| "completed"
>;
}) {
const [settings, setSettings] = usePubSub(settingsPubSub);
const [isSpeaking, setIsSpeaking] = useState(false);
const ConditionalScrollArea = useMemo(
() =>
({ children }: { children: ReactNode }) => {
return settings.enableAiResponseScrolling ? (
<ScrollArea.Autosize mah={300} type="auto" offsetScrollbars>
{children}
</ScrollArea.Autosize>
) : (
<Box>{children}</Box>
);
},
[settings.enableAiResponseScrolling],
);
function speakResponse(text: string) {
if (isSpeaking) {
self.speechSynthesis.cancel();
setIsSpeaking(false);
return;
}
const prepareTextForSpeech = (textToClean: string) => {
const withoutLinks = textToClean.replace(/\[([^\]]+)\]\([^)]+\)/g, "");
const withoutMarkdown = withoutLinks.replace(/[#*`_~\[\]]/g, "");
return withoutMarkdown;
};
const utterance = new SpeechSynthesisUtterance(prepareTextForSpeech(text));
const voices = self.speechSynthesis.getVoices();
if (voices.length > 0 && settings.selectedVoiceId) {
const voice = voices.find(
(voice) => voice.voiceURI === settings.selectedVoiceId,
);
if (voice) {
utterance.voice = voice;
utterance.lang = voice.lang;
}
}
utterance.onerror = () => {
addLogEntry("Failed to speak response");
setIsSpeaking(false);
};
utterance.onend = () => setIsSpeaking(false);
setIsSpeaking(true);
self.speechSynthesis.speak(utterance);
}
return (
<Card withBorder shadow="sm" radius="md">
<Card.Section withBorder inheritPadding py="xs">
<Group justify="space-between">
<Group gap="xs" align="center">
<Text fw={500}>
{textGenerationState === "generating"
? "Generating AI Response..."
: "AI Response"}
</Text>
{textGenerationState === "interrupted" && (
<Badge variant="light" color="yellow" size="xs">
Interrupted
</Badge>
)}
</Group>
<Group gap="xs" align="center">
{textGenerationState === "generating" ? (
<Tooltip label="Interrupt generation">
<ActionIcon
onClick={() => setTextGenerationState("interrupted")}
variant="subtle"
color="gray"
>
<IconHandStop size={16} />
</ActionIcon>
</Tooltip>
) : (
<Tooltip label="Regenerate response">
<ActionIcon
onClick={() => searchAndRespond()}
variant="subtle"
color="gray"
>
<IconRefresh size={16} />
</ActionIcon>
</Tooltip>
)}
<Tooltip
label={isSpeaking ? "Stop speaking" : "Listen to response"}
>
<ActionIcon
onClick={() => speakResponse(response)}
variant="subtle"
color={isSpeaking ? "blue" : "gray"}
>
<IconVolume2 size={16} />
</ActionIcon>
</Tooltip>
{settings.enableAiResponseScrolling ? (
<Tooltip label="Show full response without scroll bar">
<ActionIcon
onClick={() => {
setSettings({
...settings,
enableAiResponseScrolling: false,
});
}}
variant="subtle"
color="gray"
>
<IconArrowsMaximize size={16} />
</ActionIcon>
</Tooltip>
) : (
<Tooltip label="Enable scroll bar">
<ActionIcon
onClick={() => {
setSettings({
...settings,
enableAiResponseScrolling: true,
});
}}
variant="subtle"
color="gray"
>
<IconArrowsMinimize size={16} />
</ActionIcon>
</Tooltip>
)}
<Suspense>
<CopyIconButton value={response} tooltipLabel="Copy response" />
</Suspense>
</Group>
</Group>
</Card.Section>
<Card.Section withBorder>
<ConditionalScrollArea>
<Suspense>
<FormattedMarkdown>{response}</FormattedMarkdown>
</Suspense>
</ConditionalScrollArea>
{textGenerationState === "failed" && (
<Alert
variant="light"
color="yellow"
title="Failed to generate response"
icon={<IconInfoCircle />}
>
Could not generate response. Please try refreshing the page.
</Alert>
)}
</Card.Section>
</Card>
);
}
|