Skip to content

Commit

Permalink
fix: replace Skynet with girl for language model
Browse files Browse the repository at this point in the history
  • Loading branch information
idosal committed Dec 11, 2022
1 parent 535577f commit 974cd19
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ChassistantGPT

A **Chrome** browser extension that embeds ChatGPT as a hands-free voice assistant in the background. Any ChatGPT prompt is a quick "Hey, Skynet" away!
A **Chrome** browser extension that embeds ChatGPT as a hands-free voice assistant in the background. Any ChatGPT prompt is a quick "Hey, girl" away!

Please read the contents of the tab that will open when you install the extension. It contains important information about how to use the extension.
To keep the extension free to use, the speech capabilities are only supported in Chrome (excluding other Chromium-based browsers). However, the code is functional on all modern browsers.
Expand Down
8 changes: 4 additions & 4 deletions src/components/Info.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export default function Info() {
<h2>How To Use</h2>
<ul>
<li>
Say <strong>"Hey Skynet"</strong> followed by your prompt. For
example: <em>"Hey Skynet, what is love?"</em> or{' '}
Say <strong>"Hey girl"</strong> followed by your prompt. For
example: <em>"Hey girl, what is love?"</em> or{' '}
<em>"Hey Skeynet... Tell me a joke"</em>.
</li>
<li>
Expand Down Expand Up @@ -82,11 +82,11 @@ export default function Info() {
.
</p>
<p>
The extension does not store any data. It does not transmit data from your device, except for the sentence that directly follows the "Hey Skynet" command, which is sent straight to ChatGPT.
The extension does not store any data. It does not transmit data from your device, except for the sentence that directly follows the "Hey, girl" command, which is sent straight to ChatGPT.

The extension's only permission is limited access to `chat.openai.com` (webpage + fetch without CORS). It{' '}
<strong>does not</strong> store any data. It <strong>does not</strong>{' '}
except for the sentence that directly follows the "Hey Skynet" command, which is sent straight to ChatGPT.
except for the sentence that directly follows the "Hey, girl" command, which is sent straight to ChatGPT.
</p>
</main>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Popup() {
return <main>
<MessageList ref={msgListRef}>
<Message model={{
message: "Hello! I'm your ChatGPT assistant. To start, simply say \"Hey Skynet\", followed by your prompt.",
message: "Hello! I'm your ChatGPT assistant. To start, simply say \"Hey girl\", followed by your prompt.",
position: 'single',
direction: 'incoming',
}} />
Expand Down
2 changes: 1 addition & 1 deletion src/content/audio.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let lastPart = ''
let shouldStop = false
let lastInstruction = ''
let voice
const CHASSISTANT_TRIGGER = 'hey skynet'
const CHASSISTANT_TRIGGER = 'hey girl'
let pauseHandler
const history = []

Expand Down

0 comments on commit 974cd19

Please sign in to comment.