File tree 4 files changed +10
-10
lines changed
chat_widget/prompt_gen_widget
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " pyqt-openai"
7
- version = " 1.8.0 "
7
+ version = " 1.8.1 "
8
8
description = " Python multipurpose chatbot that user can use GPT, other AI models altogether (Release Name: VividNode)"
9
9
authors = [{ name = " Jung Gyu Yoon" , email = " yjg30737@gmail.com" }]
10
10
license = { text = " MIT" }
Original file line number Diff line number Diff line change 23
23
# For the sake of following the PEP8 standard, we will declare module-level dunder names.
24
24
# PEP8 standard about dunder names: https://peps.python.org/pep-0008/#module-level-dunder-names
25
25
26
- __version__ = "1.8.0 "
26
+ __version__ = "1.8.1 "
27
27
__author__ = "Jung Gyu Yoon"
28
28
29
29
# Constants
Original file line number Diff line number Diff line change @@ -230,14 +230,14 @@ def __initUi(self):
230
230
)
231
231
232
232
for i in range (len (self .__entries )):
233
- name = self .__entries [i ].name
234
- content = self .__entries [i ].content
233
+ act = self .__entries [i ].act
234
+ prompt = self .__entries [i ].prompt
235
235
236
- item1 = QTableWidgetItem (name )
236
+ item1 = QTableWidgetItem (act )
237
237
item1 .setData (Qt .ItemDataRole .UserRole , self .__entries [i ].id )
238
238
item1 .setTextAlignment (Qt .AlignmentFlag .AlignCenter )
239
239
240
- item2 = QTableWidgetItem (content )
240
+ item2 = QTableWidgetItem (prompt )
241
241
item2 .setTextAlignment (Qt .AlignmentFlag .AlignCenter )
242
242
243
243
self .__table .setItem (i , 0 , item1 )
Original file line number Diff line number Diff line change 5
5
#
6
6
VSVersionInfo(
7
7
ffi=FixedFileInfo(
8
- filevers=(1, 8, 0 ),
9
- prodvers=(1, 8, 0 ),
8
+ filevers=(1, 8, 1 ),
9
+ prodvers=(1, 8, 1 ),
10
10
mask=0x3f,
11
11
flags=0x0,
12
12
OS=0x4,
@@ -19,10 +19,10 @@ VSVersionInfo(
19
19
[
20
20
StringTable(
21
21
u'040904B0',
22
- [StringStruct(u'FileVersion', u'1.8.0 '),
22
+ [StringStruct(u'FileVersion', u'1.8.1 '),
23
23
StringStruct(u'ProductName', u'VividNode'),
24
24
StringStruct(u'LegalCopyright', u'Copyright © 2024 Jung Gyu Yoon'),
25
- StringStruct(u'ProductVersion', u'1.8.0 ')])
25
+ StringStruct(u'ProductVersion', u'1.8.1 ')])
26
26
]),
27
27
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
28
28
]
You can’t perform that action at this time.
0 commit comments