1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
Unofficial_ChatGPT_Client/README.md

104 lines
3.0 KiB
Markdown
Raw Normal View History

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-09 01:02:13 -05:00
[Awesome ChatGPT](./AWESOME.md)
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)
2022-12-09 23:18:35 -05:00
<!-- download start -->
2022-12-07 23:22:27 -05:00
**Latest:**
2022-12-10 09:25:29 -05:00
- `Mac`: [ChatGPT_0.1.7_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.1.7/ChatGPT_0.1.7_x64.dmg)
- `Linux`: [chat-gpt_0.1.7_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.1.7/chat-gpt_0.1.7_amd64.deb)
- `Windows`: [ChatGPT_0.1.7_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.1.7/ChatGPT_0.1.7_x64_en-US.msi)
2022-12-07 23:22:27 -05:00
[Other version...](https://github.com/lencx/ChatGPT/releases)
2022-12-07 08:00:19 -05:00
2022-12-09 23:18:35 -05:00
<!-- download end -->
2022-12-10 12:29:20 -05:00
## Install
Easily install with _[Homebrew](https://brew.sh) ([Cask](https://docs.brew.sh/Cask-Cookbook)):_
~~~ sh
brew tap lencx/chatgpt https://github.com/lencx/ChatGPT.git
brew install --cask chatgpt --no-quarantine
~~~
Also, if you keep a _[Brewfile](https://github.com/Homebrew/homebrew-bundle#usage)_, you can add something like this:
~~~ rb
repo = "lencx/chatgpt"
tap repo, "https://github.com/#{repo}.git"
cask "popcorn-time", args: { "no-quarantine": true }
~~~
2022-12-07 07:02:31 -05:00
## Features
- multi-platform: `macOS` `Linux` `Windows`
2022-12-09 14:23:29 -05:00
- export ChatGPT history (PNG, PDF and Share Link)
- always on top (whether the window should always be on top of other windows)
2022-12-07 07:02:31 -05:00
- inject script
- auto updater
2022-12-07 08:06:51 -05:00
- app menu
2022-12-10 09:25:29 -05:00
- tray window
2022-12-07 08:06:51 -05:00
- shortcut
2022-12-07 07:02:31 -05:00
## Preview
2022-12-10 09:29:29 -05:00
<img width="320" src="./assets/install.png" alt="install"> <img width="320" src="./assets/chat.png" alt="chat">
<img width="320" src="./assets/export.png" alt="export"> <img width="320" src="./assets/tray.png" alt="tray">
<img width="320" src="./assets/auto-update.png" alt="auto update">
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
2022-12-09 14:29:50 -05:00
### Developer cannot be verified?
- [Open a Mac app from an unidentified developer](https://support.apple.com/en-sg/guide/mac-help/mh40616/mac)
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
```
2022-12-09 14:29:50 -05:00
## Related
2022-12-09 21:44:11 -05:00
- [Tauri](https://tauri.app) - Build an optimized, secure, and frontend-independent application for multi-platform deployment.
- [ChatGPT](https://openai.com/blog/chatgpt) - ChatGPT: Optimizing Language Models for Dialogue.
- [ChatGPT Export and Share](https://github.com/liady/ChatGPT-pdf) - A Chrome extension for downloading your ChatGPT history to PNG, PDF or creating a sharable link.