-
Notifications
You must be signed in to change notification settings - Fork 3
/
AIAssistant.js
259 lines (243 loc) · 7.08 KB
/
AIAssistant.js
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
import classNames from "classnames";
import React, { useEffect, useRef, useState } from "react";
import ReactTimeago from "react-timeago";
import { fetchQuery, fetchSummary } from "../utils/api";
import { GlobalStyles } from "./GlobalStyles";
import { DeleteIcon } from "./icons/DeleteIcon";
import { VolumeOnIcon } from "./icons/VolumeOnIcon";
import { VolumeOffIcon } from "./icons/VolumeOffIcon";
import { SummaryIcon } from "./icons/SummaryIcon";
const responseErrorText =
"Uh oh! While I tried to get a response for you, an error occurred! Please try again.";
const summaryErrorText =
"Uh oh! While I tried to get a summary for you, an error occurred! Please try again.";
const createUserMessage = (message) => ({
role: "user",
content: message,
date: new Date(),
});
const createAssistantMessage = (message) => ({
role: "assistant",
content: message,
date: new Date(),
});
export const AIAssistant = ({ roomUrl }) => {
const [summary, setSummary] = useState(null);
const [chatHistory, setChatHistory] = useState([]);
const [isPrompting, setIsPrompting] = useState(false);
const [isSummarizing, setIsSummarizing] = useState(false);
const [playSounds, setPlaySounds] = useState(false);
const inputRef = useRef(null);
const chatRef = useRef(null);
const audioMsgRef = useRef(null);
const audioErrorRef = useRef(null);
const playAudioMsg = () => {
if (!audioMsgRef.current || !playSounds) return;
audioMsgRef.current.currentTime = 0;
audioMsgRef.current.play();
};
const playAudioError = () => {
if (!audioErrorRef.current || !playSounds) return;
audioErrorRef.current.currentTime = 0;
audioErrorRef.current.play();
};
const handleAskAISubmit = async (ev) => {
ev.preventDefault();
const query = inputRef.current.value.trim();
if (!query) return;
inputRef.current.value = "";
setChatHistory((prev) => [...prev, createUserMessage(query)]);
try {
setIsPrompting(true);
const response = await fetchQuery(roomUrl, query);
setChatHistory((prev) => [...prev, createAssistantMessage(response)]);
playAudioMsg();
} catch {
setChatHistory((prev) => [
...prev,
createAssistantMessage(responseErrorText),
]);
playAudioError();
} finally {
setIsPrompting(false);
}
};
const handleSummaryClick = async () => {
try {
setIsSummarizing(true);
const response = await fetchSummary(roomUrl);
setSummary(response);
playAudioMsg();
} catch {
setSummary(summaryErrorText);
playAudioError();
} finally {
setIsSummarizing(false);
}
};
useEffect(() => {
chatRef.current?.scrollTo({
top: chatRef.current?.scrollHeight,
behavior: "smooth",
});
}, [chatHistory]);
return (
<div className="ai-assistant">
<div className="wrapper">
<button
className="summary-btn"
disabled={isSummarizing}
type="button"
onClick={handleSummaryClick}
>
<SummaryIcon size={16} />
<span>{summary ? "Refresh summary" : "Get summary"}</span>
</button>
<div className="summary">
{!!summary && <div className="message answer">{summary}</div>}
</div>
<div className="actions">
{chatHistory.length > 0 && (
<button onClick={() => setChatHistory([])}>
<DeleteIcon size={16} />
<span>Clear chat</span>
</button>
)}
<button
onClick={() => setPlaySounds((p) => !p)}
title={playSounds ? "Disable sounds" : "Enable sounds"}
>
{playSounds ? (
<VolumeOnIcon size={16} />
) : (
<VolumeOffIcon size={16} />
)}
</button>
</div>
<div className="stream" ref={chatRef}>
{chatHistory.map((msg) => (
<div
key={`${msg.role}${msg.date.toString()}`}
className={classNames("message", {
question: msg.role === "user",
answer: msg.role === "assistant",
})}
>
<ReactTimeago
date={msg.date}
formatter={(
value,
unit,
suffix,
epochMilliseconds,
nextFormatter,
) => {
if (unit === "second") {
return value < 30 ? `a moment ago` : `about a minute ago`;
}
return nextFormatter(value, unit, suffix, epochMilliseconds);
}}
/>
{msg.content}
</div>
))}
</div>
<form className="input" onSubmit={handleAskAISubmit}>
<input
ref={inputRef}
type="text"
readOnly={isPrompting}
placeholder="Ask AI"
maxLength={256}
required
/>
<button disabled={isPrompting} type="submit">
{isPrompting ? "Loading…" : "Submit"}
</button>
</form>
</div>
<audio ref={audioMsgRef} src="/ai-message.mp3" playsInline />
<audio ref={audioErrorRef} src="/ai-error.mp3" playsInline />
<GlobalStyles />
<style jsx>{`
.ai-assistant {
align-self: stretch;
flex-grow: 1;
height: 100%;
width: 100%;
align-items: stretch;
display: flex;
flex-direction: column;
gap: 8px;
justify-content: stretch;
}
.wrapper {
padding: 8px;
flex-grow: 1;
min-height: 0;
display: flex;
flex-direction: column;
}
.summary-btn {
align-self: flex-start;
width: auto;
}
.summary {
border-bottom: 1px solid var(--border);
flex: 1 1 50%;
overflow-y: auto;
padding: 8px 0;
}
.stream {
flex: 1 1 50%;
overflow-y: auto;
padding: 8px 0;
}
.actions {
display: flex;
gap: 4px;
justify-content: space-between;
margin-top: 8px;
}
.actions button img {
display: block;
}
.message {
border-radius: 4px;
padding: 8px;
text-align: left;
width: auto;
}
.message.question {
border: 1px solid var(--border);
margin-left: 2rem;
}
.message.answer {
background: var(--highlight50);
color: #000;
margin-right: 2rem;
white-space: pre-wrap;
}
.message :global(time) {
display: block;
font-style: italic;
font-size: 0.75rem;
}
.stream .message + .message {
margin-top: 4px;
}
.input {
display: flex;
gap: 4px;
}
.input input {
flex-grow: 1;
}
.input button {
flex-shrink: 1;
width: auto;
}
`}</style>
</div>
);
};