English Version | 简体中文版
Enter Website · Report Bug · Request Feature
Did you enjoy using Free ChatGPT? Give it some love with a star! 🌟
Are you ready to unlock the full potential of ChatGPT with Free ChatGPT?
Free ChatGPT is the ultimate destination for anyone who wants to experience the limitless power of conversational AI. With no limits and completely free to use for all, our app harnesses the full potential of OpenAI's ChatGPT API to offer you an unparalleled chatbot experience.
Whether you're looking to chat with a virtual assistant, improve your language skills, or simply enjoy a fun and engaging conversation, our app has got you covered. So why wait? Join us today and explore the exciting world of Free ChatGPT!
Free ChatGPT comes with a bundle of features already. You can do the followings with it,
- 🌐 Access ChatGPT from anywhere in the world, completely FREE of charge!
- 🤖 Engage in natural and dynamic conversation with a cutting-edge chatbot.
- 😂 Choose from a variety of fun and engaging chatbot personalities.
- 🚀 Streamline your conversation process by using the prompt library.
- ✏️ Create and edit messages from multiple perspectives (system / assistant / user).
- 🖥️ Tweak model parameters such as temperature to achieve an unexpected outcome.
- 🔀 Change the order of messages to suit your needs.
- ➕ Add new messages in between old ones for a seamless conversation flow.
- ⚙️ Supply your own API key to surpass limits of free API endpoint
- ⚙️ Customise your own API proxy endpoint
- 💾 All chat history are automatically backed up to your browser's local storage
- 📥 Easily import and export chat data as a JSON file.
- 📥 Download your entire chat log as markdown, pdf or image.
- 💬 Supports multiple languages to ensure maximum accessibility (i18n).
- 😊 Enjoy a UI that is identical to the official ChatGPT
To get started, simply visit our website at https://freechatgpt.chat/. There are 3 ways for you to start using Free ChatGPT.
- Enter into the API menu your OpenAI API Key obtained from OpenAI API Keys.
- Utilise the free api endpoint provided by ayaka14732/ChatGPTAPIFree
- Host your own API endpoint by following the instructions provided here: https://github.com/ayaka14732/ChatGPTAPIFree. Subsequently, enter the API endpoint into the API menu.
At Free ChatGPT, we strive to provide you with useful and amazing features around the clock. And just like any project, your support and motivation will be instrumental in helping us keep moving forward!
If you have enjoyed using our app, we kindly ask you to give this project a ⭐️. Your endorsement means a lot to us and encourages us to work harder towards delivering the best possible experience.
If you would like to support the team, consider sponsoring us through one of the methods below. Every contribution, no matter how small, helps us to maintain and improve our service.
Payment Method | Link |
---|---|
KoFi | |
Alipay (Ayaka) | |
Wechat (Ayaka) |
Thank you for being a part of our community, and we look forward to serving you better in the future.
If you'd like to run your own instance of Free ChatGPT, you can easily do so by following these steps:
-
Create a GitHub account (if you don't have one already)
-
Star this repository ⭐️
-
Fork this repository
-
If you are not using a custom domain, configure your
vite.config.ts
file by addingbase: '/<REPO>/'
inside theexport default defineConfig({...})
block, where<REPO>
is the name of your repository on GitHub, obtained fromhttps://<USERNAME>.github.io/<REPO>
(<REPO>
should beFreeChatGPT
if you did not change it). The code should look like this:export default defineConfig({ base: '/FreeChatGPT/', /* Rest of the configuration here */ });
-
Repository settings > Secrets > Actions > General > Tick "Read and write permissions"
-
In the left sidebar, click on
Pages
and in the right section, selectDeploy from a branch
forSource
andgh-pages
forBranch
. Then at the top section, you can see that "Your site is live atXXX
".
-
Ensure that you have the following installed:
-
Clone this repository by running
git clone https://github.com/ztjhz/FreeChatGPT.git
-
Navigate into the directory by running
cd FreeChatGPT
-
Run
yarn
ornpm install
, depending on whether you have yarn or npm installed. -
Launch the app by running
yarn dev
ornpm run dev