From 6c3070929fca7d6367e2c980a1657568a7532e8e Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:47:40 -0500 Subject: [PATCH] add genai to frigateconfig --- web/src/types/frigateConfig.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web/src/types/frigateConfig.ts b/web/src/types/frigateConfig.ts index 66e8d61e3..a12c24248 100644 --- a/web/src/types/frigateConfig.ts +++ b/web/src/types/frigateConfig.ts @@ -298,6 +298,16 @@ export interface FrigateConfig { retry_interval: number; }; + genai: { + enabled: boolean; + provider: string; + base_url?: string; + api_key?: string; + model: string; + prompt: string; + object_prompts: { [key: string]: string }; + }; + go2rtc: { streams: string[]; webrtc: {