Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update version #1

Open
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
f21adef
Update const.ts
hihumanzone Jun 23, 2023
c82efda
Update const.ts
hihumanzone Jun 23, 2023
f3ba77b
Update const.ts
hihumanzone Jun 23, 2023
ee61253
Update const.ts
hihumanzone Jun 23, 2023
0db60be
Update Chat.tsx
hihumanzone Jun 23, 2023
06e5f39
Update Chat.tsx
hihumanzone Jun 23, 2023
93673c1
Update const.ts
hihumanzone Jun 23, 2023
191da0b
Update const.ts
hihumanzone Jun 23, 2023
c652e96
Update README.md
hihumanzone Jun 23, 2023
d979bad
Update SidebarButton.tsx
hihumanzone Jun 23, 2023
02e0edb
Update SidebarButton.tsx
hihumanzone Jun 23, 2023
ef2e45a
Add files via upload
hihumanzone Jun 23, 2023
d8f5fec
Update README.md
hihumanzone Jun 23, 2023
aa3df6b
Update ChatInput.tsx
hihumanzone Jun 23, 2023
70540bf
Update Chat.tsx
hihumanzone Jun 23, 2023
3facb77
Update ChatInput.tsx
hihumanzone Jun 23, 2023
68dab9f
Update ChatInput.tsx
hihumanzone Jun 23, 2023
c4c3b4c
Update ChatInput.tsx
hihumanzone Jun 23, 2023
9e95fca
Update ChatInput.tsx
hihumanzone Jun 23, 2023
cc3efcf
Update ChatInput.tsx
hihumanzone Jun 23, 2023
f9fe4f4
Update ChatInput.tsx
hihumanzone Jun 23, 2023
68992da
Update ChatInput.tsx
hihumanzone Jun 23, 2023
dc4fea4
Update ChatInput.tsx
hihumanzone Jun 23, 2023
714f99d
Update ChatInput.tsx
hihumanzone Jun 23, 2023
613c7c4
Update ChatInput.tsx
hihumanzone Jun 23, 2023
f9dbece
Update ChatInput.tsx
hihumanzone Jun 23, 2023
83eca57
Update ChatInput.tsx
hihumanzone Jun 23, 2023
bee7415
Update Chat.tsx
hihumanzone Jun 25, 2023
5bcff75
Update Chat.tsx
hihumanzone Jun 25, 2023
3aeb811
Update openai.ts
hihumanzone Jul 4, 2023
521ce31
Update openai.ts
hihumanzone Jul 4, 2023
e46abcd
Update openai.ts
hihumanzone Jul 12, 2023
3904048
Update openai.ts
hihumanzone Jul 12, 2023
876af79
Update openai.ts
hihumanzone Jul 12, 2023
49da4c6
Update openai.ts
hihumanzone Jul 12, 2023
ee88955
Update openai.ts
hihumanzone Jul 12, 2023
b7c2d5c
Update openai.ts
hihumanzone Jul 12, 2023
784b3c6
Update openai.ts
hihumanzone Jul 12, 2023
35d532c
Update openai.ts
hihumanzone Jul 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Chatbot UI
# ChatUI

Chatbot UI is an open source chat UI for AI models.
Another ChatUI for ChimeraGPT + Poe models.

![Chatbot UI](./public/screenshots/screenshot-0402023.jpg)
![Chatbot UI](./public/screenshots/SUS.jpg)



Expand Down
25 changes: 6 additions & 19 deletions components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -355,34 +355,21 @@ export const Chat = memo(({ stopConversationRef }: Props) => {
Welcome to Chatbot UI
</div>
<div className="text-center text-lg text-black dark:text-white">
<div className="mb-8">{`Chatbot UI is an open source clone of OpenAI's ChatGPT UI.`}</div>
<div className="mb-2 font-bold">
Important: Chatbot UI is 100% unaffiliated with OpenAI.
</div>
</div>
<div className="text-center text-gray-500 dark:text-gray-400">
<div className="mb-2">
Chatbot UI allows you to plug in your API key to use this UI with
their API.
</div>
<div className="mb-2">
It is <span className="italic">only</span> used to communicate
with their API.
</div>
<div className="mb-8">{`Another ChatUI for ChimeraGPT with Poe models.`}</div>
<div className="mb-2">
{t(
'Please set your OpenAI API key in the bottom left of the sidebar.',
'Please set your ChimeraAPI key by placing it in "OpenAI API Key" textbox located in the bottom left of the sidebar.',
)}
</div>
<div>
{t("If you don't have an OpenAI API key, you can get one here: ")}
{t("If you don't have an ChimeraAPI key, you can get one here: ")}
<a
href="https://platform.openai.com/account/api-keys"
href="https://discord.gg/pCTprCYhuV"
target="_blank"
rel="noreferrer"
className="text-blue-500 hover:underline"
>
openai.com
Discord Server
</a>
</div>
</div>
Expand All @@ -405,7 +392,7 @@ export const Chat = memo(({ stopConversationRef }: Props) => {
<Spinner size="16px" className="mx-auto" />
</div>
) : (
'Chatbot UI'
''
)}
</div>

Expand Down
Loading