mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-06-28 07:11:53 +03:00
Some checks failed
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* refactor go2rtc docs * clarify go2rtc language in live * add export docs * Move around config items to reflect reference config is now for advanced users * Remove outdated ipv6 section * Fix broken links * live usage docs * review usage docs * history usage * explore usage * add usage sidebar and move related text to usage sections * update links * update live * move exports to usage * fix anchors * Make starts of usage pages consistent * refactor network config * Adjustments for review * Add AI details to history page * describe alerts vs detections in review usage * simplify --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|
|
|
const genai: SectionConfigOverrides = {
|
|
base: {
|
|
sectionDocs: "/configuration/genai/genai_config",
|
|
advancedFields: ["*.base_url", "*.provider_options", "*.runtime_options"],
|
|
hiddenFields: ["genai.enabled_in_config"],
|
|
restartRequired: [],
|
|
uiSchema: {
|
|
"ui:options": { disableNestedCard: true },
|
|
"*": {
|
|
"ui:options": { disableNestedCard: true },
|
|
"ui:order": [
|
|
"provider",
|
|
"api_key",
|
|
"base_url",
|
|
"model",
|
|
"provider_options",
|
|
"runtime_options",
|
|
"*",
|
|
],
|
|
},
|
|
"*.roles": {
|
|
"ui:widget": "genaiRoles",
|
|
},
|
|
"*.api_key": {
|
|
"ui:widget": "password",
|
|
"ui:options": { size: "lg" },
|
|
},
|
|
"*.base_url": {
|
|
"ui:options": { size: "lg" },
|
|
},
|
|
"*.model": {
|
|
"ui:widget": "genaiModel",
|
|
"ui:options": { size: "xs" },
|
|
},
|
|
"*.provider": {
|
|
"ui:options": { size: "xs" },
|
|
},
|
|
"*.provider_options": {
|
|
"ui:field": "DictAsYamlField",
|
|
},
|
|
"*.runtime_options": {
|
|
"ui:field": "DictAsYamlField",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default genai;
|