frigate/web/src/components/config-form/sections/ModelSection.tsx
2026-02-27 09:40:20 -06:00

13 lines
337 B
TypeScript

// Model Section Component
// Global model configuration settings
import { createConfigSection } from "./BaseSection";
import { getSectionConfig } from "../sectionConfigs";
export const ModelSection = createConfigSection({
sectionPath: "model",
defaultConfig: getSectionConfig("model", "global"),
});
export default ModelSection;