Add model ID to Frigate+ settings page (#17261)

This commit is contained in:
leccelecce 2025-03-20 01:56:38 +00:00 committed by GitHub
parent a7704a369d
commit 1787f6130d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 0 deletions

View File

@ -540,6 +540,7 @@
},
"modelInfo": {
"title": "Model Information",
"modelId": "Model ID",
"modelType": "Model Type",
"trainDate": "Train Date",
"baseModel": "Base Model",

View File

@ -393,6 +393,7 @@ export interface FrigateConfig {
all_attributes: [string];
plus?: {
name: string;
id: string;
trainDate: string;
baseModel: string;
supportedDetectors: string[];

View File

@ -113,6 +113,12 @@ export default function FrigatePlusSettingsView() {
).toLocaleString()}
</p>
</div>
<div>
<Label className="text-muted-foreground">
{t("frigatePlus.modelInfo.modelId")}
</Label>
<p>{config.model.plus.id}</p>
</div>
<div>
<Label className="text-muted-foreground">
{t("frigatePlus.modelInfo.baseModel")}