8000 Update README.md · ag-python-qt/pyqt-openai@2fdecff · GitHub
[go: up one dir, main page]

Skip to content

Commit 2fdecff

Browse files
authored
Update README.md
1 parent 26487a2 commit 2fdecff

File tree

1 file changed

+32
-25
lines 8000 changed

1 file changed

+32
-25
lines changed

README.md

Lines changed: 32 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ You can select the model at the right side bar.
2727

2828
An internet connection is required.
2929

30-
## Contact
31-
You can join pyqt-openai's <a href="https://discord.gg/cHekprskVE">Discord Server</a> to have a conversation about it or AI-related stuff 🙂
32-
33-
## Note
34-
Some of the features are still being tested.
35-
36-
I recommend to install sqlite management software. It's not necessary to run this app (obviously), but it's good practice to manage database about conversation history with AI and to know how this works.
30+
## Table of Contents
31+
* [Feature](#feature)
32+
* [Requirements](#requirements)
33+
* [Preview](#preview)
34+
* [How to Install](#how-to-install)
35+
* [Usage](#usage)
36+
* [Troubleshooting](#troubleshooting)
37+
* [Contact](#contact)
38+
* [Note](#note)
39+
* [See Also](#see-also)
3740

3841
## Feature
3942
* basically this is <b>desktop application version of ChatGPT</b> with image generation tool.
@@ -45,7 +48,8 @@ I recommend to install sqlite management software. It's not necessary to run thi
4548
* rename conversation
4649
* everything above is saved in an SQLite database file named conv.db.
4750
* support GPT-4 and every other models below GPT3
48-
* support prompt generator (manageable)
51+
* support prompt generator (manageable, autosaved in database)
52+
* support slash commands
4953
* support beginning and ending part of the prompt
5054
* you can run this in background application
5155
* notification will pop up when response is generated
@@ -77,35 +81,31 @@ This is using GPT-3.5 turbo model by default.
7781
https://user-images.githubusercontent.com/55078043/236583883-8e9732a3-1223-4b28-85f1-f60d8b2d6ced.mp4
7882

7983
### Prompt Generator
80-
#### Preview 1 (v0.1.22)
81-
https://user-images.githubusercontent.com/55078043/236584481-b7bb5246-6bf4-4343-ba6c-a343bb11cda7.mp4
82-
#### Preview 2 (v0.1.3)
83-
https://user-images.githubusercontent.com/55078043/236658468-9947a417-99b3-4e44-8849-a676308a0239.mp4
84-
85-
So sorry to weak preview, but i have a lot of idea about this prompt generator! Just wait.
84+
https://github.com/yjg30737/pyqt-openai/assets/55078043/2f351442-1e8c-4ba2-b5fe-4391df6250ff
8685

8786
#### Image Generation
88-
![image](https://github.com/yjg30737/pyqt-openai/assets/55078043/6fd4143f-1d32-4cfc-9182-991fad6f3757)
89-
90-
Again, weak preview (i just gave prompt text as "A" which is pathetic) but please consider this is very first version of sd image generation (v0.1.4) so just wait
87+
#### Preview
88+
![image](https://github.com/yjg30737/pyqt-openai/assets/55078043/d0903a76-bf4f-4900-bfea-89da6f072c9d)
9189

92-
## How to play
93-
1. git clone ~
94-
2. from the root directory, type "cd pyqt_openai"
95-
3. You should put your api key in the line edit. You can get it in <a href="https://platform.openai.com/account/api-keys">official site</a> of openai. Sign up and log in before you get it. <b>By the way, this is free trial, not permanently free. See <a href="https://platform.openai.com/account/billing/overview">this</a> after you have logged in.</b>
90+
## How to Install
91+
1. open command propmt of your OS.
92+
2. git clone ~
93+
3. from the root directory, type "cd pyqt_openai"
94+
4. pip install -r requirements.txt
95+
5. You should put your api key in the line edit. You can get it in <a href="https://platform.openai.com/account/api-keys">official site</a> of openai. Sign up and log in before you get it.
9696

9797
Be sure, this is a very important API key that belongs to you only, so you should remember it and keep it secure.
9898

99-
4. python main.py
99+
6. python main.py
100100

101-
If installation doesn't work, check the troubleshooting below.
101+
If installation doesn't work, you can contact me with bring up new issue in issue tab or check the troubleshooting below even it is only about very specific error.
102102

103103
## Troubleshooting
104104
If you see this error while installing the openai package
105105
```
106106
subprocess-exited-with-error
107107
```
108-
you can shout a curse word and just download the package itself from <a href="https://pypi.org/project/openai/#files">pypi</a>.
108+
download the package itself from <a href="https://pypi.org/project/openai/#files">pypi</a>.
109109

110110
Unzip it, access the package directory, type
111111
```
@@ -114,8 +114,15 @@ python setup.py install
114114

115115
That will install the openai.
116116

117+
Note: I don't know this can happen in newer version of openai as well, so tell me if you know about something
118+
119+
## Contact
120+
You can join pyqt-openai's <a href="https://discord.gg/cHekprskVE">Discord Server</a> to have a conversation about it or AI-related stuff 🙂
121+
122+
## Note
123+
I recommend to install sqlite management software. It's not necessary to run this app (obviously), but it's good practice to manage database about conversation history with AI and to know how this works.
124+
117125
## TODO list
118-
* auto-complete prompt command
119126
* DB for images (to further experiement of both DALL-E and Stable Diffusion or other image generation engine)
120127
* show the explanation of every model and terms related to AI (e.g. temperature, topp..)
121128
* save conversation history with other format (xlsx, csv, etc.)

0 commit comments

Comments
 (0)
0