Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Merge branch 'pre-release'
Browse files Browse the repository at this point in the history
  • Loading branch information
ramon-victor committed Jul 19, 2023
2 parents 29ca324 + e83558d commit 44b27dc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ Check out the project here: [FreeGPT WebUI - Chimera Version](https://github.com

## Project Hosting and Demonstration 🌐🚀
The project is hosted on multiple platforms to be tested and modified.
|Plataform|Status|Repo|Demo|
|--|--|--|--|
|[replit](https://replit.com/)|![Active](https://img.shields.io/badge/Active-brightgreen)|[FreeGPT WebUI](https://replit.com/@ramonvc/freegpt-webui)|[Chat](https://freegpt-webui.ramonvc.repl.co/chat/)
|[hugging face](https://huggingface.co)|![Active](https://img.shields.io/badge/Active-brightgreen)|[FreeGPT WebUI](https://huggingface.co/spaces/monra/freegpt-webui/tree/main)|[Chat](https://huggingface.co/spaces/monra/freegpt-webui)
|[replit](https://replit.com/)|![Active](https://img.shields.io/badge/Active-brightgreen)|[FreeGPT WebUI - Chimera Version](https://replit.com/@ramonvc/freegpt-webui-chimera)|[Chat](https://freegpt-webui-chimera.ramonvc.repl.co/chat/)
|Plataform|Status|API Key|Free|Repo|Demo|
|--|--|--|--|--|--|
|[replit](https://replit.com/)|![Active](https://img.shields.io/badge/Active-brightgreen)|◼️|☑️|[FreeGPT WebUI](https://replit.com/@ramonvc/freegpt-webui)|[Chat](https://freegpt-webui.ramonvc.repl.co/chat/)
|[hugging face](https://huggingface.co)|![Active](https://img.shields.io/badge/Active-brightgreen)|◼️|☑️|[FreeGPT WebUI](https://huggingface.co/spaces/monra/freegpt-webui/tree/main)|[Chat](https://huggingface.co/spaces/monra/freegpt-webui)
|[replit](https://replit.com/)|![Active](https://img.shields.io/badge/Active-brightgreen)|☑️|☑️|[FreeGPT WebUI - Chimera Version](https://replit.com/@ramonvc/freegpt-webui-chimera)|[Chat](https://freegpt-webui-chimera.ramonvc.repl.co/chat/)

## Note ℹ️
<p>
Expand Down
19 changes: 10 additions & 9 deletions client/css/conversation.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,21 @@
border: 1px solid var(--blur-border);
}

.input-box {
display: flex;
.box.input-box {
position: relative;
align-items: center;
padding: 8px;
cursor: pointer;
}

#send-button {
position: absolute;
bottom: 25%;
right: 10px;
z-index: 1;
padding: 16px;
}

#cursor {
line-height: 17px;
margin-left: 3px;
Expand Down Expand Up @@ -119,13 +127,6 @@
border-radius: 10px;
}

@media screen and (max-width: 990px) {
.conversation {
width: 100%;
height: 90%;
}
}

@media screen and (max-height: 720px) {
.conversation.box {
height: 70%;
Expand Down
1 change: 1 addition & 0 deletions client/css/message.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
.message .content {
display: flex;
flex-direction: column;
width: 90%;
gap: 18px;
}

Expand Down
2 changes: 1 addition & 1 deletion client/js/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const ask_gpt = async (message) => {
message_input.innerHTML = ``;
message_input.innerText = ``;

add_conversation(window.conversation_id, message.substr(0, 20));
add_conversation(window.conversation_id, message.substr(0, 16));
window.scrollTo(0, 0);
window.controller = new AbortController();

Expand Down

0 comments on commit 44b27dc

Please sign in to comment.