+ {folders.length > 0 && (
+
+ {folders.map((f) => (
+
+
+ {f.path}
+
+
+
+ ))}
+
+ )}
+
+ {
+ setInput(e.target.value);
+ setError(null);
+ }}
+ onKeyDown={(e) => {
+ if (e.key === "Enter") handleAdd();
+ }}
+ placeholder="/path/to/models"
+ className="h-7 flex-1 text-xs font-mono"
+ disabled={loading}
+ />
+
+
+ {error &&
{error}
}
+
+