import React from "react"; import commands from "../../../common/commands"; type CustomModelsFolderSelectProps = { customModelsPath: string; setCustomModelsPath: (arg: string) => void; }; export function CustomModelsFolderSelect({ customModelsPath, setCustomModelsPath, }: CustomModelsFolderSelectProps) { return (

ADD CUSTOM MODELS

You can add your own models easily. For more details:{" "} Custom Models Repository

{customModelsPath}

); }