mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-23 08:38:22 +03:00
19 lines
401 B
TypeScript
19 lines
401 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const genai: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
fieldOrder: [
|
||
|
|
"provider",
|
||
|
|
"api_key",
|
||
|
|
"base_url",
|
||
|
|
"model",
|
||
|
|
"provider_options",
|
||
|
|
"runtime_options",
|
||
|
|
],
|
||
|
|
advancedFields: ["base_url", "provider_options", "runtime_options"],
|
||
|
|
hiddenFields: ["genai.enabled_in_config"],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default genai;
|