mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
18 lines
397 B
QML
18 lines
397 B
QML
|
import QtCore
|
||
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
import QtQuick.Controls.Basic
|
||
|
import llm
|
||
|
|
||
|
TextField {
|
||
|
id: myDirectoryField
|
||
|
padding: 10
|
||
|
property bool isValid: LLM.directoryExists(text)
|
||
|
color: text === "" || isValid ? theme.textColor : theme.textErrorColor
|
||
|
background: Rectangle {
|
||
|
implicitWidth: 150
|
||
|
color: theme.backgroundLighter
|
||
|
radius: 10
|
||
|
}
|
||
|
}
|