From c240d148646411fa6e8cbe479a324bd8b930e90e Mon Sep 17 00:00:00 2001 From: Hyunggyu Jang Date: Thu, 23 Mar 2023 11:26:00 +0900 Subject: [PATCH 1/2] Enable branching (edit message) for Sydney --- client/src/components/Messages/HoverButtons.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Messages/HoverButtons.jsx b/client/src/components/Messages/HoverButtons.jsx index 34f5fe00b3..6bf58981c7 100644 --- a/client/src/components/Messages/HoverButtons.jsx +++ b/client/src/components/Messages/HoverButtons.jsx @@ -3,7 +3,7 @@ import React from 'react'; import EditIcon from '../svg/EditIcon'; export default function HoverButtons({ visible, onClick, model }) { - const isBing = model === 'bingai' || model === 'sydney'; + const isBing = model === 'bingai'; const enabled = !isBing; return ( From 25fd39c2b9494c999879188b0cc3a6ee47fde323 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Thu, 23 Mar 2023 11:35:23 -0400 Subject: [PATCH 2/2] Update README.md organize readme for readability --- README.md | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3b952931c..d9c39df6a9 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,11 @@ https://user-images.githubusercontent.com/110412045/223754183-8b7f45ce-6517-4bd5 +
Previous Updates
-
-
+ + 2023-03-20 @@ -41,6 +42,7 @@ On that note, I had to switch the default branch due to some breaking changes th Full details and [example here](https://github.com/danny-avila/chatgpt-clone/releases/tag/v0.0.4). Message search is on the docket
+
2023-03-12 @@ -128,7 +130,10 @@ Currently, this project is only functional with the `text-davinci-003` model. > This is a work in progress. I'm building this in public. FYI there is still a lot of tech debt to cleanup. You can follow the progress here or on my [Linkedin](https://www.linkedin.com/in/danny-avila). -Here are my recently completed and planned features: + + +
+Here are my recently completed and planned features: - [x] Persistent conversation - [x] Rename, delete conversations @@ -152,6 +157,8 @@ Here are my recently completed and planned features: - [ ] Optional use of local storage for credentials - [ ] Deploy demo +
+ ### Features - Response streaming identical to ChatGPT through server-sent events @@ -165,10 +172,19 @@ Here are my recently completed and planned features: ### Tech Stack -- Utilizes [node-chatgpt-api](https://github.com/waylaidwanderer/node-chatgpt-api) + +
+This project uses: + + + +- [node-chatgpt-api](https://github.com/waylaidwanderer/node-chatgpt-api) - No React boilerplate/toolchain/clone tutorials, created from scratch with react@latest - Use of Tailwind CSS and [shadcn/ui](https://github.com/shadcn/ui) components - Docker, useSWR, Redux, Express, MongoDB, [Keyv](https://www.npmjs.com/package/keyv) +
+ + ## Getting Started @@ -295,10 +311,16 @@ Please write me an express module, that serve the login and logout endpoint as a ### Updating + - As the project is still a work-in-progress, you should pull the latest and run the steps over. Reset your browser cache/clear site data. ## Use Cases ## + + +
+ Why use this project? + - One stop shop for all conversational AIs, with the added bonus of searching past conversations. - Using the official API, you'd have to generate 7.5 million words to expense the same cost as ChatGPT Plus ($20). - ChatGPT/Google Bard/Bing AI conversations are lost in space or @@ -314,6 +336,8 @@ Please write me an express module, that serve the login and logout endpoint as a - **ChatGPT Free is down.** ![use case example](./images/use_case.png "GPT is down! Plus is too expensive!") + +
## Origin ##