frigate/web/src/components/config-form/sections/ModelSection.tsx

13 lines
337 B
TypeScript
Raw Normal View History

2026-01-31 21:35:23 +03:00
// 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;