-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12a96f9
commit 46ad019
Showing
29 changed files
with
3,866 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
import React, { useState, Dispatch, SetStateAction } from "react"; | ||
import classNames from "classnames"; | ||
|
||
import CodeBlock from "./CodeBlock"; | ||
import Markdown from "react-markdown"; | ||
import { CopyBlock, nord } from "react-code-blocks"; | ||
// import { dotPulse } from 'ldrs' | ||
|
||
// dotPulse.register() | ||
|
||
interface BubbleProps { | ||
text: string; | ||
sender: string; | ||
setTelemetry: Dispatch<SetStateAction<any[]>>; | ||
task_index: number; | ||
messageAIindex: number; | ||
} | ||
|
||
export const md_regex_pattern: RegExp = /(```[\s\S]*?```)/g; | ||
|
||
const Bubble: React.FC<BubbleProps> = ({ | ||
text, | ||
sender, | ||
setTelemetry, | ||
task_index, | ||
messageAIindex, | ||
}) => { | ||
// Look through string to find markdown parts. | ||
const [showFeedbackButtons, setShowFeedbackButtons] = useState(true); | ||
|
||
const handleFeedback = (type: string) => { | ||
console.log(`${type} feedback received`); | ||
// Update telemetry or perform other actions here | ||
setTelemetry((prev) => [ | ||
...prev, | ||
{ | ||
event_type: "chat_feedback", | ||
task_index: task_index, | ||
feedback: type, | ||
messageAIindex: messageAIindex, | ||
timestamp: Date.now(), | ||
}, | ||
]); | ||
// hide the buttons | ||
|
||
setShowFeedbackButtons(false); | ||
|
||
}; | ||
|
||
const handleCopy = async (event: any) => { | ||
let copyText = await navigator.clipboard.readText(); | ||
console.log(event); | ||
|
||
setTelemetry((prev) => [ | ||
...prev, | ||
{ | ||
event_type: "copy_code", | ||
task_index: task_index, | ||
copied_text: copyText, | ||
response: text, // FIXME: | ||
messageAIindex: messageAIindex, | ||
timestamp: Date.now(), | ||
}, | ||
]); | ||
}; | ||
|
||
return ( | ||
<div | ||
className={classNames( | ||
"py-2 pr-3 rounded-lg justify-center items-center overflow-auto whitespace-pre-wrap w-full" | ||
)} | ||
> | ||
<div className="flex flex-row "> | ||
<img | ||
id="sender_icon" | ||
src={sender === "user" ? "/user_icon.png" : "/chatbot_icon.png"} | ||
className="h-8 w-8 mr-3" | ||
></img> | ||
|
||
<div> | ||
<b>{sender === "user" ? "You\n" : "Coding Assistant\n"}</b> | ||
{text.split(md_regex_pattern).map((txt, index) => { | ||
if ( | ||
txt.length > 6 && | ||
txt.charAt(0) == "`" && | ||
txt.charAt(1) == "`" && | ||
txt.charAt(2) == "`" && | ||
txt.charAt(txt.length - 1) == "`" && | ||
txt.charAt(txt.length - 2) == "`" && | ||
txt.charAt(txt.length - 3) == "`" | ||
) { | ||
return ( | ||
<CopyBlock | ||
text={txt.slice(3, txt.length - 3)} | ||
language={"python"} | ||
showLineNumbers={true} | ||
theme={nord} | ||
onCopy={handleCopy} | ||
key={index} | ||
/> | ||
); | ||
} else { | ||
return txt; | ||
} | ||
})} | ||
</div> | ||
</div> | ||
{sender === "bot" && showFeedbackButtons && ( | ||
<div className="flex justify-end mt-2"> | ||
<button onClick={() => handleFeedback("thumbs_up")} className="mr-2"> | ||
👍 | ||
</button> | ||
<button onClick={() => handleFeedback("thumbs_down")}> | ||
👎 | ||
</button> | ||
</div> | ||
)} | ||
{/* {sender === "bot" && text === "Generating response " && | ||
<l-dot-pulse | ||
size="40" | ||
speed="1.3" | ||
color="black" | ||
></l-dot-pulse>} FIX WEB COMPONENT LOADING IN. */} | ||
</div> | ||
); | ||
}; | ||
|
||
export default Bubble; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,260 @@ | ||
"use client"; | ||
import { useState, Dispatch, SetStateAction } from "react"; | ||
import { API_URL } from "./constants"; | ||
// import Message from "./Message"; | ||
import { MessageData } from "./Message"; | ||
import "../style.css"; | ||
import ChatWindow from "./ChatWindow"; | ||
import { useEffect, useRef } from "react"; | ||
import TextInput from "./TextInput"; | ||
import { send } from "process"; | ||
import { | ||
get_openai_chat_response, | ||
get_chat_together, | ||
} from "../functions/cloud_functions_helper"; | ||
|
||
import { loadlocalstorage, loadTaskData } from "../functions/task_logic"; | ||
import { | ||
getAuth, | ||
signInWithEmailAndPassword, | ||
createUserWithEmailAndPassword, | ||
} from "firebase/auth"; | ||
import { Message } from "postcss"; | ||
import { getAIResponse } from "../functions/chat_logic"; | ||
|
||
interface ChatProps { | ||
theme: string; | ||
code: string; | ||
setCode: (code: string) => void; | ||
awaitingResponse: boolean; | ||
setAwaitingResponse: (awaitingResponse: boolean) => void; | ||
taskId: string; | ||
setTaskId: (taskId: string) => void; | ||
responseId: string; | ||
setResponseId: (responseId: string) => void; | ||
expCondition: string; | ||
setExpCondition: (expCondition: string) => void; | ||
workerId: string; | ||
setWorkerId: (workerId: string) => void; | ||
inputValue: string; | ||
setInputValue: (inputValue: string) => void; | ||
model: string; | ||
// chatHistory: Array<Record<string, string>>; | ||
max_tokens_task: number; | ||
messages: MessageData[]; | ||
setMessages: Dispatch<SetStateAction<MessageData[]>>; | ||
setTelemetry: Dispatch<SetStateAction<any[]>>; | ||
task_index: number; | ||
setChatHistory: Dispatch<SetStateAction<any[]>>; | ||
chatHistory: any[]; | ||
messageAIIndex: number; | ||
setMessageAIIndex: Dispatch<SetStateAction<number>>; | ||
logprob: any; | ||
setChatLogProbs: Dispatch<SetStateAction<any>>; | ||
modelChat: string; | ||
} | ||
|
||
const Chat: React.FC<ChatProps> = ({ | ||
theme, | ||
code, | ||
setCode, | ||
awaitingResponse, | ||
setAwaitingResponse, | ||
taskId, | ||
setTaskId, | ||
responseId, | ||
setResponseId, | ||
expCondition, | ||
setExpCondition, | ||
workerId, | ||
setWorkerId, | ||
inputValue, | ||
setInputValue, | ||
model, | ||
max_tokens_task, | ||
messages, | ||
setMessages, | ||
setTelemetry, | ||
task_index, | ||
setChatHistory, | ||
chatHistory, | ||
messageAIIndex, | ||
setMessageAIIndex, | ||
logprob, | ||
setChatLogProbs, | ||
modelChat, | ||
}) => { | ||
// Use a ref to get the new value of awaitingResponse | ||
const awaitingRef = useRef(awaitingResponse); | ||
|
||
let interval_time_savecode = 20000; | ||
|
||
useEffect(() => { | ||
awaitingRef.current = awaitingResponse; | ||
}, [awaitingResponse]); | ||
|
||
// Function to handle change. | ||
|
||
async function handleChange(event: React.ChangeEvent<HTMLTextAreaElement>) { | ||
setInputValue(event.target.value); | ||
} | ||
|
||
async function handleKeydown( | ||
event: React.KeyboardEvent<HTMLTextAreaElement> | ||
) { | ||
if (event.key === "Enter" && !event.shiftKey) { | ||
event.preventDefault(); | ||
submitMessage(); | ||
} | ||
} | ||
|
||
async function submitMessage() { | ||
console.log("Submitting message"); | ||
if (awaitingResponse) { | ||
setAwaitingResponse(false); | ||
|
||
setTelemetry((prevTelemetry: any[]) => { | ||
return [ | ||
...prevTelemetry, | ||
{ | ||
event_type: "cancel_request", | ||
task_index: task_index, | ||
message: messages[messages.length - 1].text, // Last message text | ||
timestamp: Date.now(), | ||
}, | ||
]; | ||
}); | ||
return; | ||
} | ||
|
||
|
||
// make sure prevMessages is not empty | ||
|
||
setMessages((prevMessages: MessageData[]) => { | ||
return [ | ||
...prevMessages, | ||
{ text: inputValue, sender: "user" } as MessageData, | ||
]; // { text: inputValue, sender: "user" }]; | ||
}); | ||
|
||
setTelemetry((prevTelemetry: any[]) => { | ||
return [ | ||
...prevTelemetry, | ||
{ | ||
event_type: "user_message", | ||
task_index: task_index, | ||
message: inputValue, | ||
timestamp: Date.now(), | ||
}, | ||
]; | ||
}); | ||
|
||
setChatHistory((prevChatHistory) => { | ||
return [...prevChatHistory, { role: "user", content: inputValue }]; | ||
}); | ||
|
||
setAwaitingResponse(true); | ||
awaitingRef.current = true; | ||
|
||
console.log(modelChat); | ||
let response = ""; | ||
if (modelChat == "Off") { | ||
response = "Chat Model has been disabled."; | ||
} | ||
else if (modelChat == "gpt-3.5-turbo" || modelChat == "gpt-4-turbo") | ||
{ | ||
response = await get_openai_chat_response(modelChat, | ||
[...chatHistory, { role: "user", content: inputValue }], | ||
512, | ||
setChatLogProbs | ||
); | ||
} | ||
else { | ||
|
||
response = await get_chat_together(modelChat, | ||
[...chatHistory, { role: "user", content: inputValue }], | ||
512, | ||
setChatLogProbs | ||
); | ||
} | ||
setInputValue(""); | ||
|
||
// Return "Dummy response for development ```def foo(bar): ```" after 5 seconds. | ||
|
||
//await new Promise((resolve) => setTimeout(resolve, 5000)); | ||
//let response = "Dummy response for development ```def foo(bar): ```"; | ||
|
||
if (response != null && awaitingRef.current) { | ||
setMessages((prevMessages) => { | ||
return [...prevMessages, { text: response, sender: "bot" }]; | ||
}); | ||
|
||
let currChatHistory: any = null; | ||
setChatHistory((prevChatHistory) => { | ||
currChatHistory = prevChatHistory; | ||
return [...prevChatHistory, { role: "assistant", content: response }]; | ||
}); | ||
|
||
setTelemetry((prevTelemetry) => { | ||
return [ | ||
...prevTelemetry, | ||
{ | ||
event_type: "assistant_response", | ||
task_index: task_index, | ||
chatHistory: currChatHistory, | ||
response: response, | ||
logprob: logprob, | ||
timestamp: Date.now(), | ||
messageAIIndex: messageAIIndex, | ||
}, | ||
]; | ||
}); | ||
|
||
setMessageAIIndex((prevMessageAIIndex) => prevMessageAIIndex + 1); | ||
|
||
// Update AI response idx, | ||
} | ||
setAwaitingResponse(false); | ||
} | ||
|
||
async function clearChat() { | ||
setMessages([]); | ||
setChatHistory([{ role: "system", content: "Help with programming Python" }]); | ||
setAwaitingResponse(false); | ||
|
||
setTelemetry((prevTelemetry) => { | ||
return [ | ||
...prevTelemetry, | ||
{ | ||
event_type: "clear_chat", | ||
task_index: task_index, | ||
timestamp: Date.now(), | ||
}, | ||
]; | ||
}); | ||
} | ||
|
||
return ( | ||
<> | ||
<div className="flex flex-col h-full w-full"> | ||
<ChatWindow | ||
messages={messages} | ||
awaitingResponse={awaitingResponse} | ||
clearChat={clearChat} | ||
setTelemetry={setTelemetry} | ||
task_index={task_index} | ||
messageAIIndex={messageAIIndex} | ||
/> | ||
<TextInput | ||
onChange={handleChange} | ||
submitMessage={submitMessage} | ||
onKeyDown={handleKeydown} | ||
text_value={inputValue} | ||
awaitingResponse={awaitingResponse} | ||
/> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Chat; |
Oops, something went wrong.