File size: 12,749 Bytes
04e85f3 7ba5bbd bf3c5a1 04e85f3 7c05698 04e85f3 3316eed 233e279 7ba5bbd 04e85f3 6ccc237 fdfca8c f9fc8b0 6ccc237 04e85f3 575498e 233e279 04e85f3 7ba5bbd 04e85f3 2377124 04e85f3 2377124 04e85f3 2377124 04e85f3 2377124 fdfca8c 04e85f3 fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c d31bd9a fdfca8c 7c05698 fdfca8c 04e85f3 fdfca8c 04e85f3 2377124 22b1ae6 04e85f3 fdfca8c 575498e fdfca8c 2377124 04e85f3 2377124 04e85f3 fdfca8c 575498e fdfca8c 04e85f3 f9fc8b0 2377124 04e85f3 22b1ae6 2377124 22b1ae6 7c05698 bf3c5a1 7c05698 bf3c5a1 7c05698 bf3c5a1 f9fc8b0 bf3c5a1 f9fc8b0 bf3c5a1 f9fc8b0 8916bf2 f9fc8b0 7c05698 aef5a44 f9fc8b0 aef5a44 f9fc8b0 aef5a44 04e85f3 aef5a44 04e85f3 7ba5bbd 04e85f3 7ba5bbd 04e85f3 7ba5bbd 04e85f3 22b1ae6 04e85f3 | 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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 | import React, {useEffect, useRef, useState} from 'react';
import {
Divider,
Input,
Layout,
Tooltip
} from 'antd';
import { getDatabase, onValue, ref } from "firebase/database";
import Message from './Message'
import './Panel.css';
import app from './FirebaseApp/firebase-app'
import Browser from 'webextension-polyfill'
import {
SettingOutlined,
SyncOutlined,
SoundOutlined,
CopyOutlined,
MessageOutlined
} from '@ant-design/icons'
const {Footer, Content} = Layout;
const URL_BASE = 'https://ttt246-brain.hf.space/'
const URL_SEND_NOTIFICATION = URL_BASE + 'sendNotification'
const URL_BROWSER_ITEM = URL_BASE + 'browser/item'
const URL_ASK_WEBSITE = URL_BASE + 'browser/ask'
const URL_DELETE_RTD = URL_BASE + 'auto_task/delete'
let prompt = ""
const confs = {
"openai_key": "",
"pinecone_key": "",
"pinecone_env": "",
"firebase_key": "",
"token": "",
"uuid": "extension-uuid",
"settings": {
"temperature": 0.6
}
}
const logoUrl = Browser.runtime.getURL('logo_panel.png')
const Panel = () => {
const [question, setQuestion] = useState("");
const [messages, setMessages] = useState([]);
const [isLoading, setLoadingStatus] = useState(false);
const chat_box = useRef(null);
const handleQuestionUpdated = (event) => {
if (event.key === "Enter" && !isLoading) {
addMessage(question, true);
sendNotification(question)
prompt = question
}
};
const handleQuestionChange = (event) => {
setQuestion(event.target.value);
};
useEffect(() => {
chat_box.current.scrollTop = chat_box.current.scrollHeight;
}, [messages]);
const addMessage = (message, type, isLoading = false) => {
if (message === "") return;
if (!type && !isLoading) {
messages.pop()
}
setMessages((messages) => [
...messages,
{
"message": message,
"type": type,
"isLoading": isLoading
}]);
};
/*
* methods for sending request to server
*/
const sendRequest = async (params, url) => {
const requestOptions = {
method: 'POST', headers: {
'Content-Type': 'application/json'
}, body: JSON.stringify(params)
}
setLoadingStatus(true)
const response = await fetch(url, requestOptions)
const data = await response.json()
setLoadingStatus(false)
return data
}
const sendNotification = async () => {
const params = {
"confs": confs,
"message": question
}
setQuestion("")
sendRequest(params, URL_SEND_NOTIFICATION).then(data => {
if (data.result === undefined || data.result == null) {
return
}
try {
if (data.result.program === undefined || data.result.program == null) {
addMessage(data.result, false)
return
}
let page = 0
const currentUrl = window.location.href
switch (data.result.program) {
case "browser":
addMessage(data.result.content, false)
window.location.assign(data.result.content)
break
case 'opentab':
addMessage("open tab", false)
window.open('https://google.com/search?q=', '_blank', 'noreferrer')
break
case 'opentabsearch':
addMessage("open tab and search", false)
window.open('https://google.com/search?q=' + data.result.content, '_blank', 'noreferrer')
break
case 'closetab':
addMessage("close tab", false)
window.close()
break
case 'previouspage':
if (page === 0) {
page = 0
} else {
page -= 10
}
addMessage("go to previous page", false)
window.location.assign(currentUrl + '&start=' + page)
break
case 'nextpage':
page += 10
addMessage("go to next page", false)
window.location.assign(currentUrl + '&start=' + page)
break
case 'scrollup':
addMessage("scroll up", false)
window.scrollBy(0, -300)
break
case 'scrolldown':
addMessage("scroll down", false)
window.scrollBy(0, 300)
break
case 'scrolltop':
addMessage("scroll to top", false)
window.scrollTo(0, 0)
break
case 'scrollbottom':
addMessage("scroll to bottom", false)
window.scrollTo(0, document.body.scrollHeight)
break
case 'message':
addMessage(data.result.content, false)
break
case 'selectitemdetailinfo':
addMessage("I need more detail info to select item", false)
selectItem()
break
case 'askwebsite':
askAboutCurrentWebsite()
break
case 'autotask':
autoTask(data.result.content)
break
default:
break
}
} catch (e) {
throw e
}
})
}
const selectItem = async () => {
const params = {
"confs": confs,
"prompt": prompt,
"items": scrapeATags()
}
sendRequest(params, URL_BROWSER_ITEM).then(data => {
window.open(data.result.content, '_blank', 'noreferrer')
}).catch(err => {
console.error((err))
})
}
const askAboutCurrentWebsite = async () => {
const params = {
"confs": confs,
"prompt": prompt,
"items": scrapeWebsites()
}
sendRequest(params, URL_ASK_WEBSITE).then(data => {
addMessage(data.result.content, false)
}).catch(err => {
console.error((err))
})
}
const deleteRtdInFirebase = async (refLink) => {
const params = {
"confs": confs,
"data": {
"reference_link": refLink
}
}
sendRequest(params, URL_DELETE_RTD).then(data => {
console.log(data.result)
}).catch(err => {
console.error(err)
})
}
/*
* methods for scraping websites
*/
const scrapeATags = () => {
const links = []
const aTags = document.querySelectorAll('a')
aTags.forEach((aTag) => {
const content = aTag.textContent || ''
const hrefElement = document.createElement('a')
hrefElement.href = aTag.getAttribute('href') || ''
const href = hrefElement.href
links.push({ title: content, link: href })
})
return links
}
const scrapeWebsites = () => {
const data = []
const tags = document.querySelectorAll(['a', 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'h7'])
tags.forEach((tag) => {
const content = tag.textContent || ''
if(content !== '')
data.push(content)
})
return data
}
const autoTask = (referenceUrl) => {
const refUrl = referenceUrl.slice(1)
// getting real time database
const db = getDatabase(app)
const dbRef = ref(db, refUrl);
// listen for data changes
onValue(dbRef, (snapshot) => {
let data = []
let result = []
let resultToStr = ""
// getting data object from real time database
if (snapshot.val() !== null && snapshot.val() !== undefined) {
data = Object.values(snapshot.val())
}
if (typeof data[data.length - 1] !== 'undefined' && data[data.length-1].hasOwnProperty('thoughts')) {
result.push(data[data.length-1].thoughts)
} else if (typeof data[data.length - 1] !== 'undefined' && data[data.length-1].hasOwnProperty('result')) {
result.push(data[data.length-1])
}
// convert json object to string
result?.map(item => {
if (item.hasOwnProperty('criticism')) {
resultToStr += "criticism:" + item.criticism + "\n" +
"plan: " + item.plan + "\n" +
"reasoning: " + item.reasoning + "\n" +
"speak: " + item.speak + "\n" +
"text: " + item.text
} else if (item.hasOwnProperty('result')) {
resultToStr += "result: " + item.result + "\n"
}
})
addMessage(resultToStr, false)
// delete database of firebase when finish auto task
data?.map(item => {
if (item.hasOwnProperty('command') && item.command.name === 'finish') {
deleteRtdInFirebase(referenceUrl).then(() => {
addMessage("Task is successfully completed!", false)
}).catch(err => {
console.error((err))
})
}
})
}, (error) => {
console.error(error);
})
}
/// Check if the user's system is in dark mode
const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
let isDarkMode = darkModeMediaQuery.matches;
const handleThemeChange = (e) => {
isDarkMode = e.matches;
};
// Listen for changes in the theme data
darkModeMediaQuery.addEventListener('change', handleThemeChange);
return (
<Layout className="main-layout" data-theme={isDarkMode ? 'dark': 'light'}>
<div className="header">
<img src={logoUrl} height="50px" alt="no image" />
</div>
<Divider className="divider"/>
<Content className="content" ref={chat_box}>
{
messages.map((message) => (
<Message message={message.message} type={message.type} isLoading={message.isLoading}/>
))
}
{isLoading ? <Message type={false} isLoading={true}/> : <div/>}
</Content>
<Divider className="divider"/>
<Footer className="footer">
<Tooltip title="Settings" arrow="show" placement="bottom">
<div className="footer-btn">
<SettingOutlined />
</div>
</Tooltip>
<Input
value={question}
onChange={handleQuestionChange}
onKeyDown={handleQuestionUpdated}
/>
<Tooltip title="re-send" arrow="show" placement="bottom">
<div className="footer-btn">
<SyncOutlined />
</div>
</Tooltip>
<Tooltip title="voice recognition" arrow="show" placement="bottom">
<div className="footer-btn">
<SoundOutlined />
</div>
</Tooltip>
<Tooltip title="copy" arrow="show" placement="bottom">
<div className="footer-btn">
<CopyOutlined />
</div>
</Tooltip>
<Tooltip title="message" arrow="show" placement="bottom">
<div className="footer-btn">
<MessageOutlined />
</div>
</Tooltip>
</Footer>
</Layout>
);
};
export default Panel;
|