mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-07-26 13:47:03 +02:00
Add model ID to Frigate+ settings page (#17261)
This commit is contained in:
parent
a7704a369d
commit
1787f6130d
@ -540,6 +540,7 @@
|
||||
},
|
||||
"modelInfo": {
|
||||
"title": "Model Information",
|
||||
"modelId": "Model ID",
|
||||
"modelType": "Model Type",
|
||||
"trainDate": "Train Date",
|
||||
"baseModel": "Base Model",
|
||||
|
@ -393,6 +393,7 @@ export interface FrigateConfig {
|
||||
all_attributes: [string];
|
||||
plus?: {
|
||||
name: string;
|
||||
id: string;
|
||||
trainDate: string;
|
||||
baseModel: string;
|
||||
supportedDetectors: string[];
|
||||
|
@ -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")}
|
||||
|
Loading…
Reference in New Issue
Block a user