photoprism/internal/ai/classify/const.go
Michael Mayer ebeaaf568b Metadata: Set labels based on matching keywords in the caption #4603
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-01-17 06:24:29 +01:00

13 lines
234 B
Go

package classify
// Data sources.
const (
SrcAuto = ""
SrcManual = "manual"
SrcLocation = "location"
SrcImage = "image"
SrcTitle = "title"
SrcCaption = "caption"
SrcSubject = "subject"
SrcKeyword = "keyword"
)