2023-05-21 02:20:55 +03:00
|
|
|
"use client";
|
|
|
|
import axios from "axios";
|
2023-05-26 14:56:29 +03:00
|
|
|
import { redirect } from "next/navigation";
|
2023-05-29 01:45:48 +03:00
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { MdMic, MdMicOff, MdSettings } from "react-icons/md";
|
2023-05-21 02:20:55 +03:00
|
|
|
import Button from "../components/ui/Button";
|
2023-05-26 14:56:29 +03:00
|
|
|
import Card from "../components/ui/Card";
|
2023-05-21 02:20:55 +03:00
|
|
|
import Modal from "../components/ui/Modal";
|
2023-05-23 11:06:58 +03:00
|
|
|
import PageHeading from "../components/ui/PageHeading";
|
2023-05-24 23:21:22 +03:00
|
|
|
import { useSupabase } from "../supabase-provider";
|
2023-05-26 14:56:29 +03:00
|
|
|
import ChatMessages from "./ChatMessages";
|
2023-05-18 02:22:13 +03:00
|
|
|
|
|
|
|
export default function ChatPage() {
|
2023-05-21 02:20:55 +03:00
|
|
|
const [question, setQuestion] = useState("");
|
2023-05-24 23:21:22 +03:00
|
|
|
const [history, setHistory] = useState<Array<[string, string]>>([]);
|
2023-05-21 02:20:55 +03:00
|
|
|
const [model, setModel] = useState("gpt-3.5-turbo");
|
|
|
|
const [temperature, setTemperature] = useState(0);
|
|
|
|
const [maxTokens, setMaxTokens] = useState(500);
|
|
|
|
const [isPending, setIsPending] = useState(false);
|
2023-05-29 01:45:48 +03:00
|
|
|
const [isListening, setIsListening] = useState(false);
|
2023-05-26 14:56:29 +03:00
|
|
|
const { session } = useSupabase();
|
2023-05-24 23:21:22 +03:00
|
|
|
if (session === null) {
|
2023-05-26 11:57:29 +03:00
|
|
|
redirect("/login");
|
2023-05-24 23:21:22 +03:00
|
|
|
}
|
2023-05-18 02:22:13 +03:00
|
|
|
|
2023-05-29 01:45:48 +03:00
|
|
|
useEffect(() => {
|
|
|
|
if (typeof window !== "undefined") {
|
|
|
|
const SpeechRecognition =
|
|
|
|
window.SpeechRecognition || window.webkitSpeechRecognition;
|
|
|
|
|
|
|
|
const mic = new SpeechRecognition();
|
|
|
|
|
|
|
|
mic.continuous = true;
|
|
|
|
mic.interimResults = false;
|
|
|
|
mic.lang = "en-US";
|
|
|
|
|
|
|
|
mic.onstart = () => {
|
|
|
|
console.log("Mics on");
|
|
|
|
};
|
|
|
|
|
|
|
|
mic.onend = () => {
|
|
|
|
console.log("Mics off");
|
|
|
|
};
|
|
|
|
|
|
|
|
mic.onerror = (event: SpeechRecognitionErrorEvent) => {
|
|
|
|
console.log(event.error);
|
|
|
|
setIsListening(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
mic.onresult = (event: SpeechRecognitionEvent) => {
|
|
|
|
const interimTranscript =
|
|
|
|
event.results[event.results.length - 1][0].transcript;
|
|
|
|
setQuestion((prevQuestion) => prevQuestion + interimTranscript);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isListening) {
|
|
|
|
mic.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
if (mic) {
|
|
|
|
mic.stop();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}, [isListening]);
|
|
|
|
|
2023-05-18 02:22:13 +03:00
|
|
|
const askQuestion = async () => {
|
2023-05-21 02:20:55 +03:00
|
|
|
setHistory((hist) => [...hist, ["user", question]]);
|
|
|
|
setIsPending(true);
|
2023-05-29 01:45:48 +03:00
|
|
|
setIsListening(false);
|
2023-05-22 21:03:38 +03:00
|
|
|
const response = await axios.post(
|
|
|
|
`${process.env.NEXT_PUBLIC_BACKEND_URL}/chat/`,
|
|
|
|
{
|
|
|
|
model,
|
|
|
|
question,
|
|
|
|
history,
|
|
|
|
temperature,
|
|
|
|
max_tokens: maxTokens,
|
2023-05-24 23:21:22 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: {
|
2023-05-26 11:57:29 +03:00
|
|
|
Authorization: `Bearer ${session.access_token}`,
|
2023-05-24 23:21:22 +03:00
|
|
|
},
|
2023-05-22 21:03:38 +03:00
|
|
|
}
|
|
|
|
);
|
2023-05-18 02:22:13 +03:00
|
|
|
setHistory(response.data.history);
|
2023-05-21 02:20:55 +03:00
|
|
|
setQuestion("");
|
|
|
|
setIsPending(false);
|
2023-05-18 02:22:13 +03:00
|
|
|
};
|
|
|
|
|
2023-05-29 01:45:48 +03:00
|
|
|
const handleListen = () => {
|
|
|
|
setIsListening((prevIsListening) => !prevIsListening);
|
|
|
|
};
|
|
|
|
|
2023-05-18 02:22:13 +03:00
|
|
|
return (
|
2023-05-26 11:57:29 +03:00
|
|
|
<main className="min-h-screen w-full flex flex-col pt-32">
|
2023-05-23 11:06:58 +03:00
|
|
|
<section className="flex flex-col justify-center items-center flex-1 gap-5 h-full">
|
|
|
|
<PageHeading
|
|
|
|
title="Chat with your brain"
|
2023-05-25 11:10:35 +03:00
|
|
|
subtitle="Talk to a language model about your uploaded data"
|
2023-05-23 11:06:58 +03:00
|
|
|
/>
|
2023-05-21 02:20:55 +03:00
|
|
|
{/* Chat */}
|
|
|
|
<Card className="p-5 max-w-3xl w-full min-h-full flex-1 mb-24">
|
|
|
|
<ChatMessages history={history} />
|
|
|
|
<Card className="fixed left-1/2 w-full max-w-3xl bg-gray-100 dark:bg-gray-800 rounded-b-none -translate-x-1/2 bottom-0 px-5 py-5">
|
|
|
|
<form
|
|
|
|
onSubmit={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
if (!isPending) askQuestion();
|
|
|
|
}}
|
|
|
|
className="w-full flex items-center justify-center gap-2"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
autoFocus
|
|
|
|
type="text"
|
|
|
|
value={question}
|
|
|
|
onChange={(e) => setQuestion(e.target.value)}
|
|
|
|
className="w-full p-2 border border-gray-300 dark:border-gray-500 outline-none rounded dark:bg-gray-800"
|
2023-05-25 11:10:35 +03:00
|
|
|
placeholder="Begin conversation here..."
|
2023-05-21 02:20:55 +03:00
|
|
|
/>
|
|
|
|
<Button type="submit" isLoading={isPending}>
|
2023-05-25 11:10:35 +03:00
|
|
|
{isPending ? "Thinking..." : "Chat"}
|
2023-05-21 02:20:55 +03:00
|
|
|
</Button>
|
2023-05-29 01:45:48 +03:00
|
|
|
{/* Mic Button */}
|
|
|
|
<Button
|
|
|
|
className="px-3"
|
|
|
|
variant={"tertiary"}
|
|
|
|
type="button"
|
|
|
|
onClick={handleListen}
|
|
|
|
>
|
|
|
|
{isListening ? (
|
|
|
|
<MdMicOff className="text-2xl" />
|
|
|
|
) : (
|
|
|
|
<MdMic className="text-2xl" />
|
|
|
|
)}
|
|
|
|
</Button>
|
2023-05-21 02:20:55 +03:00
|
|
|
{/* Settings Button */}
|
|
|
|
<Modal
|
|
|
|
Trigger={
|
|
|
|
<Button className="px-3" variant={"tertiary"}>
|
|
|
|
<MdSettings className="text-2xl" />
|
|
|
|
</Button>
|
|
|
|
}
|
|
|
|
title="Settings"
|
|
|
|
desc="Modify your brain"
|
|
|
|
>
|
|
|
|
<form className="flex flex-col gap-5 py-5">
|
|
|
|
<fieldset className="w-full flex">
|
|
|
|
<label className="flex-1" htmlFor="model">
|
|
|
|
Model:
|
|
|
|
</label>
|
|
|
|
<select
|
|
|
|
name="model"
|
|
|
|
id="model"
|
|
|
|
value={model}
|
2023-05-22 21:03:38 +03:00
|
|
|
className="px-5 py-2 dark:bg-gray-700 bg-gray-200 rounded-md"
|
2023-05-21 02:20:55 +03:00
|
|
|
onChange={(e) => setModel(e.target.value)}
|
|
|
|
>
|
|
|
|
<option value="gpt-3.5-turbo">gpt-3.5-turbo</option>
|
|
|
|
<option value="gpt-4">gpt-4</option>
|
2023-06-01 17:01:27 +03:00
|
|
|
<option value="vertexai">vertexai</option>
|
2023-05-21 02:20:55 +03:00
|
|
|
</select>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset className="w-full flex">
|
|
|
|
<label className="flex-1" htmlFor="temp">
|
|
|
|
Temperature: {temperature}
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
name="temp"
|
|
|
|
id="temp"
|
|
|
|
type="range"
|
|
|
|
min="0"
|
|
|
|
max="1"
|
|
|
|
step="0.01"
|
|
|
|
value={temperature}
|
|
|
|
onChange={(e) => setTemperature(+e.target.value)}
|
|
|
|
/>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset className="w-full flex">
|
|
|
|
<label className="flex-1" htmlFor="tokens">
|
|
|
|
Tokens: {maxTokens}
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
name="tokens"
|
|
|
|
id="tokens"
|
|
|
|
type="range"
|
|
|
|
min="256"
|
|
|
|
max="3000"
|
|
|
|
step="1"
|
|
|
|
value={maxTokens}
|
|
|
|
onChange={(e) => setMaxTokens(+e.target.value)}
|
|
|
|
/>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</Modal>
|
|
|
|
</form>
|
|
|
|
</Card>
|
|
|
|
</Card>
|
2023-05-23 11:06:58 +03:00
|
|
|
</section>
|
|
|
|
</main>
|
2023-05-18 02:22:13 +03:00
|
|
|
);
|
|
|
|
}
|