OllamaInterface/RunOllamaServerDialog.py

changeset 14
08932ee12a69
parent 8
3118d16e526e
child 20
8cb7bfe07e15
equal deleted inserted replaced
13:3fd49d7004b2 14:08932ee12a69
107 Private slot to add the server process output to the output pane. 107 Private slot to add the server process output to the output pane.
108 """ 108 """
109 if self.__process is not None: 109 if self.__process is not None:
110 out = str(self.__process.readAllStandardOutput(), "utf-8") 110 out = str(self.__process.readAllStandardOutput(), "utf-8")
111 self.outputEdit.insertPlainText(out) 111 self.outputEdit.insertPlainText(out)
112 self.outputEdit.ensureCursorVisible()
112 113
113 @pyqtSlot() 114 @pyqtSlot()
114 def __processFinished(self): 115 def __processFinished(self):
115 """ 116 """
116 Private slot handling the finishing of the server process. 117 Private slot handling the finishing of the server process.

eric ide

mercurial