forked from raddka/terminal-llm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui_main.py
224 lines (200 loc) · 8.77 KB
/
gui_main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import sys
from PyQt6.QtWidgets import QApplication, QMainWindow, QWidget, QVBoxLayout, QHBoxLayout, QTextEdit, QPushButton, QLineEdit, QLabel, QComboBox, QMessageBox, QInputDialog, QScrollArea
from PyQt6.QtCore import Qt
from PyQt6.QtGui import QFont, QPalette, QColor
from modules.functions import create_file, create_idea, load_idea, delete_idea, list_ideas
from modules.helpers import model_selector, llama_args, char_selector
from llama_cpp import Llama
import json
class LLMChatGUI(QMainWindow):
def __init__(self):
super().__init__()
self.setWindowTitle("LLM Chat Interface")
self.setGeometry(100, 100, 1000, 700)
self.central_widget = QWidget()
self.setCentralWidget(self.central_widget)
self.layout = QVBoxLayout(self.central_widget)
self.setup_ui()
self.load_config()
self.initialize_llm()
self.apply_dark_theme()
def setup_ui(self):
# Header
header_layout = QHBoxLayout()
self.header_label = QLabel("LLM Chat Interface")
self.header_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
header_layout.addWidget(self.header_label)
self.layout.addLayout(header_layout)
# Chat area
chat_scroll = QScrollArea()
chat_scroll.setWidgetResizable(True)
chat_content = QWidget()
self.chat_layout = QVBoxLayout(chat_content)
self.chat_layout.setAlignment(Qt.AlignmentFlag.AlignTop)
chat_scroll.setWidget(chat_content)
self.layout.addWidget(chat_scroll, 1)
# Input area
input_layout = QHBoxLayout()
self.input_field = QLineEdit()
self.input_field.setPlaceholderText("Type your message here...")
self.send_button = QPushButton("Send")
self.send_button.clicked.connect(self.send_message)
input_layout.addWidget(self.input_field, 7)
input_layout.addWidget(self.send_button, 1)
self.layout.addLayout(input_layout)
# Function buttons
function_layout = QHBoxLayout()
buttons = [
("Create File", self.create_file_dialog),
("Create Idea", self.create_idea_dialog),
("Load Idea", self.load_idea_dialog),
("Delete Idea", self.delete_idea_dialog),
("List Ideas", self.list_ideas)
]
for text, func in buttons:
button = QPushButton(text)
button.clicked.connect(func)
function_layout.addWidget(button)
self.layout.addLayout(function_layout)
# Model selection
model_layout = QHBoxLayout()
self.model_selector = QComboBox()
self.model_selector.addItems(["Model 1", "Model 2", "Model 3"]) # Replace with actual model names
self.select_model_button = QPushButton("Select Model")
self.select_model_button.clicked.connect(self.select_model)
model_layout.addWidget(QLabel("Model:"))
model_layout.addWidget(self.model_selector, 1)
model_layout.addWidget(self.select_model_button)
self.layout.addLayout(model_layout)
def apply_dark_theme(self):
self.setStyleSheet("""
QWidget {
background-color: #2b2b2b;
color: #ffffff;
font-family: 'Roboto', sans-serif;
font-size: 14px;
}
QTextEdit, QLineEdit {
background-color: #3c3f41;
border: 1px solid #646464;
border-radius: 4px;
padding: 5px;
}
QPushButton {
background-color: #4a4a4a;
border: 1px solid #646464;
border-radius: 4px;
padding: 5px 10px;
}
QPushButton:hover {
background-color: #5a5a5a;
}
QComboBox {
background-color: #3c3f41;
border: 1px solid #646464;
border-radius: 4px;
padding: 5px;
}
QScrollBar:vertical {
border: none;
background: #3c3f41;
width: 10px;
margin: 0px 0px 0px 0px;
}
QScrollBar::handle:vertical {
background: #5a5a5a;
min-height: 20px;
border-radius: 5px;
}
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
height: 0px;
}
""")
def send_message(self):
user_message = self.input_field.text()
self.add_message("User", user_message)
self.input_field.clear()
# Process the message and get LLM response
output = self.llm(prompt=user_message,
max_tokens=self.llm_config["max_tokens"],
stop=self.llm_config["stop"],
temperature=self.llm_config["temperature"],
top_p=self.llm_config["top_p"],
top_k=self.llm_config["top_k"],
min_p=self.llm_config["min_p"],
repeat_penalty=self.llm_config["repeat_penalty"])
assistant_message = output["choices"][0]["text"]
self.add_message(self.llm_name, assistant_message)
def add_message(self, sender, message):
message_widget = QTextEdit()
message_widget.setReadOnly(True)
message_widget.setHtml(f"<b>{sender}:</b> {message}")
message_widget.setMaximumHeight(100)
self.chat_layout.addWidget(message_widget)
# ... (rest of the methods remain the same)
def load_config(self):
with open('llm_config.json', 'r') as file:
self.llm_config = json.load(file)
def initialize_llm(self):
model_name = model_selector(self)
if model_name:
n_gpu, n_context = llama_args(self)
if n_gpu is not None and n_context is not None:
self.llm = Llama(model_path="./models/" + model_name, chat_format="llama-2", n_gpu_layers=n_gpu, n_ctx=n_context)
self.llm_name = char_selector(self)
self.chat_area.append(f"Initialized LLM: {self.llm_name}")
def send_message(self):
user_message = self.input_field.text()
self.chat_area.append(f"User: {user_message}")
self.input_field.clear()
# Process the message and get LLM response
output = self.llm(prompt=user_message,
max_tokens=self.llm_config["max_tokens"],
stop=self.llm_config["stop"],
temperature=self.llm_config["temperature"],
top_p=self.llm_config["top_p"],
top_k=self.llm_config["top_k"],
min_p=self.llm_config["min_p"],
repeat_penalty=self.llm_config["repeat_penalty"])
assistant_message = output["choices"][0]["text"]
self.chat_area.append(f"{self.llm_name}: {assistant_message}")
def create_file_dialog(self):
file_name, ok = QInputDialog.getText(self, "Create File", "Enter file name:")
if ok and file_name:
result = create_file(file_name)
QMessageBox.information(self, "File Creation", result)
def create_idea_dialog(self):
idea_name, ok1 = QInputDialog.getText(self, "Create Idea", "Enter idea name:")
if ok1 and idea_name:
content, ok2 = QInputDialog.getMultiLineText(self, "Create Idea", "Enter idea content:")
if ok2:
result = create_idea(idea_name, content)
QMessageBox.information(self, "Idea Creation", result)
def load_idea_dialog(self):
idea_name, ok = QInputDialog.getText(self, "Load Idea", "Enter idea name:")
if ok and idea_name:
content = load_idea(idea_name)
if content != "Idea not found":
self.chat_area.append(f"Loaded Idea '{idea_name}':\n{content}")
else:
QMessageBox.warning(self, "Load Idea", "Idea not found")
def delete_idea_dialog(self):
idea_name, ok = QInputDialog.getText(self, "Delete Idea", "Enter idea name:")
if ok and idea_name:
result = delete_idea(idea_name)
QMessageBox.information(self, "Delete Idea", result)
def list_ideas(self):
ideas = list_ideas()
if isinstance(ideas, list):
self.chat_area.append("Available Ideas:\n" + "\n".join(ideas))
else:
self.chat_area.append(ideas)
def select_model(self):
selected_model = self.model_selector.currentText()
# Implement model switching logic here
QMessageBox.information(self, "Model Selection", f"Selected model: {selected_model}")
if __name__ == "__main__":
app = QApplication(sys.argv)
window = LLMChatGUI()
window.show()
sys.exit(app.exec())