| 481 | } |
| 482 | |
| 483 | void InlineChatWidgetPrivate::handleStop() |
| 484 | { |
| 485 | setState(Original); |
| 486 | edit->setPlainText(questionLabel->text()); |
| 487 | edit->moveCursor(QTextCursor::End); |
| 488 | questionLabel->clear(); |
| 489 | foreach (auto watcher, futureWatcherList) { |
| 490 | if (!watcher->isFinished()) |
| 491 | watcher->cancel(); |
| 492 | } |
| 493 | inlineChatLLM->cancel(); |
| 494 | } |
| 495 | |
| 496 | void InlineChatWidgetPrivate::handleCreatePromptFinished() |
| 497 | { |
no test coverage detected