mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
6d9cdf228c
per model settings as well as the ability to clone a model into a "character." This also implements system prompts as well as quite a few bugfixes for instance this fixes chatgpt.
14 lines
249 B
QML
14 lines
249 B
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
TextField {
|
|
id: myTextField
|
|
padding: 10
|
|
background: Rectangle {
|
|
implicitWidth: 150
|
|
color: theme.backgroundDark
|
|
radius: 10
|
|
}
|
|
} |