Spaces:
Running
Running
File size: 5,870 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 |
import {
Button,
Card,
Group,
Paper,
Stack,
Text,
Textarea,
} from "@mantine/core";
import { IconSend } from "@tabler/icons-react";
import { usePubSub } from "create-pubsub/react";
import type { ChatMessage } from "gpt-tokenizer/GptEncoding";
import {
type ChangeEvent,
type KeyboardEvent,
Suspense,
lazy,
useEffect,
useRef,
useState,
} from "react";
import { handleEnterKeyDown } from "../../modules/keyboard";
import { addLogEntry } from "../../modules/logEntries";
import { settingsPubSub } from "../../modules/pubSub";
import { generateChatResponse } from "../../modules/textGeneration";
const FormattedMarkdown = lazy(() => import("./FormattedMarkdown"));
const CopyIconButton = lazy(() => import("./CopyIconButton"));
interface ChatState {
input: string;
isGenerating: boolean;
streamedResponse: string;
}
export default function ChatInterface({
initialQuery,
initialResponse,
}: {
initialQuery: string;
initialResponse: string;
}) {
const [messages, setMessages] = useState<ChatMessage[]>([]);
const [state, setState] = useState<ChatState>({
input: "",
isGenerating: false,
streamedResponse: "",
});
const latestResponseRef = useRef("");
const [settings] = usePubSub(settingsPubSub);
useEffect(() => {
setMessages([
{ role: "user", content: initialQuery },
{ role: "assistant", content: initialResponse },
]);
}, [initialQuery, initialResponse]);
const handleSend = async () => {
if (state.input.trim() === "" || state.isGenerating) return;
const newMessages: ChatMessage[] = [
...messages,
{ role: "user", content: state.input },
];
setMessages(newMessages);
setState((prev) => ({
...prev,
input: "",
isGenerating: true,
streamedResponse: "",
}));
latestResponseRef.current = "";
try {
addLogEntry("User sent a follow-up question");
await generateChatResponse(newMessages, (partialResponse) => {
setState((prev) => ({ ...prev, streamedResponse: partialResponse }));
latestResponseRef.current = partialResponse;
});
setMessages((prevMessages) => [
...prevMessages,
{ role: "assistant", content: latestResponseRef.current },
]);
addLogEntry("AI responded to follow-up question");
} catch (error) {
addLogEntry(`Error generating chat response: ${error}`);
setMessages((prevMessages) => [
...prevMessages,
{
role: "assistant",
content: "Sorry, I encountered an error while generating a response.",
},
]);
} finally {
setState((prev) => ({
...prev,
isGenerating: false,
streamedResponse: "",
}));
}
};
const handleInputChange = (event: ChangeEvent<HTMLTextAreaElement>) => {
const input = event.target.value;
setState((prev) => ({ ...prev, input }));
};
const handleKeyDown = (event: KeyboardEvent<HTMLTextAreaElement>) => {
handleEnterKeyDown(event, settings, handleSend);
};
const getChatContent = () => {
return messages
.slice(2)
.map(
(msg, index) =>
`${index + 1}. ${msg.role?.toUpperCase()}\n\n${msg.content}`,
)
.join("\n\n");
};
return (
<Card withBorder shadow="sm" radius="md">
<Card.Section withBorder inheritPadding py="xs">
<Group justify="space-between">
<Text fw={500}>Follow-up questions</Text>
{messages.length > 2 && (
<Suspense>
<CopyIconButton
value={getChatContent()}
tooltipLabel="Copy conversation"
/>
</Suspense>
)}
</Group>
</Card.Section>
<Stack gap="md" pt="md">
{messages.slice(2).length > 0 && (
<Stack gap="md">
{messages.slice(2).map((message, index) => (
<Paper
key={`${message.role}-${index}`}
shadow="xs"
radius="xl"
p="sm"
maw="90%"
style={{
alignSelf:
message.role === "user" ? "flex-end" : "flex-start",
}}
>
<Suspense>
<FormattedMarkdown>{message.content}</FormattedMarkdown>
</Suspense>
</Paper>
))}
{state.isGenerating && state.streamedResponse.length > 0 && (
<Paper
shadow="xs"
radius="xl"
p="sm"
maw="90%"
style={{ alignSelf: "flex-start" }}
>
<Suspense>
<FormattedMarkdown>
{state.streamedResponse}
</FormattedMarkdown>
</Suspense>
</Paper>
)}
</Stack>
)}
<Group align="flex-end" style={{ position: "relative" }}>
<Textarea
placeholder="Anything else you would like to know?"
value={state.input}
onChange={handleInputChange}
onKeyDown={handleKeyDown}
autosize
minRows={1}
maxRows={4}
style={{ flexGrow: 1, paddingRight: "50px" }}
disabled={state.isGenerating}
/>
<Button
size="sm"
variant="default"
onClick={handleSend}
loading={state.isGenerating}
style={{
height: "100%",
position: "absolute",
right: 0,
top: 0,
bottom: 0,
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0,
}}
>
<IconSend size={16} />
</Button>
</Group>
</Stack>
</Card>
);
}
|