2022-12-07 07:02:31 -05:00
|
|
|
<p align="center">
|
|
|
|
<img width="180" src="./logo.png" alt="ChatGPT">
|
|
|
|
<h1 align="center">ChatGPT</h1>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
> ChatGPT Desktop Application
|
|
|
|
|
2022-12-07 23:22:27 -05:00
|
|
|
## Downloads
|
|
|
|
|
|
|
|
[![ChatGPT downloads](https://img.shields.io/github/downloads/lencx/ChatGPT/total.svg?style=flat-square)](https://github.com/lencx/ChatGPT/releases)
|
|
|
|
|
|
|
|
**Latest:**
|
|
|
|
|
|
|
|
- `Mac`: [chat-gpt_0.1.5_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.1.5/chat-gpt_0.1.5_amd64.deb)
|
|
|
|
- `Linux`: [ChatGPT_0.1.5_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.1.5/ChatGPT_0.1.5_x64.dmg)
|
|
|
|
- `Windows`: [ChatGPT_0.1.5_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.1.5/ChatGPT_0.1.5_x64_en-US.msi)
|
|
|
|
|
|
|
|
[Other version...](https://github.com/lencx/ChatGPT/releases)
|
2022-12-07 08:00:19 -05:00
|
|
|
|
2022-12-07 07:02:31 -05:00
|
|
|
## Features
|
|
|
|
|
|
|
|
- multi-platform: `macOS` `Linux` `Windows`
|
|
|
|
- inject script
|
|
|
|
- auto updater
|
2022-12-07 08:06:51 -05:00
|
|
|
- app menu
|
|
|
|
- system tray
|
|
|
|
- shortcut
|
2022-12-07 07:02:31 -05:00
|
|
|
|
|
|
|
## Preview
|
|
|
|
|
|
|
|
<img width="600" src="./assets/install.png" alt="install">
|
|
|
|
<img width="600" src="./assets/chat.png" alt="chat">
|
2022-12-07 12:18:03 -05:00
|
|
|
<img width="600" src="./assets/auto-update.png" alt="auto update">
|
2022-12-07 07:02:31 -05:00
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
|
|
|
- [ ] export chat history
|
|
|
|
- [ ] ...
|
2022-12-07 23:22:27 -05:00
|
|
|
|
|
|
|
## FAQ
|
|
|
|
|
|
|
|
### Is it safe?
|
|
|
|
|
2022-12-07 23:26:26 -05:00
|
|
|
It's safe, just a wrapper for [OpenAI ChatGPT](https://chat.openai.com) website, no other data transfer exists (you can check the source code).
|
2022-12-07 23:22:27 -05:00
|
|
|
|
|
|
|
### How do i build it?
|
|
|
|
|
|
|
|
#### PreInstall
|
|
|
|
|
|
|
|
- [Rust](https://www.rust-lang.org/)
|
|
|
|
- [VS Code](https://code.visualstudio.com/)
|
|
|
|
- [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
|
|
|
|
- [tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode)
|
|
|
|
|
|
|
|
#### Start
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# step1:
|
|
|
|
git clone https://github.com/lencx/ChatGPT.git
|
|
|
|
|
|
|
|
# step2:
|
|
|
|
cd ChatGPT
|
|
|
|
|
|
|
|
# step3: install deps
|
|
|
|
yarn
|
|
|
|
|
|
|
|
# step4:
|
|
|
|
yarn dev
|
|
|
|
|
|
|
|
# step5:
|
|
|
|
# bundle path: src-tauri/target/release/bundle
|
|
|
|
yarn build
|
|
|
|
```
|