self.response_ready.emit(response.choices[0].text.strip()) class ChatWindow(QWidget): def __init__(self): super().__init__() # 设置窗口标题和大小 self.setWindowTitle('Chat with GPT-3') self.resize(500, 400) # 创建一个垂直布局,并将所有控件添加到布局中 layout = QVBoxLayout() # ...
self.response_ready.emit(response.choices[0].text.strip()) class ChatWindow(QWidget): def __init__(self): super().__init__() # 设置窗口标题和大小 self.setWindowTitle('Chat with GPT-3') self.resize(500, 400) # 创建一个垂直布局,并将所有控件添加到布局中 layout = QVBoxLayout() # ...