update to draft version of category short names

This commit is contained in:
bryan newbold
2025-07-19 17:37:10 +02:00
parent 8098907212
commit 9e36606f70
+2 -2
View File
@@ -614,9 +614,9 @@ func (srv *Server) WebProfile(c echo.Context) error {
log.Infof("found syntheticContentGeneration user intent from %s: %v", synthIntent["updatedAt"], synthIntent["allow"]) log.Infof("found syntheticContentGeneration user intent from %s: %v", synthIntent["updatedAt"], synthIntent["allow"])
switch synthIntent["allow"] { switch synthIntent["allow"] {
case true: case true:
c.Response().Header().Set("Content-Usage", "genai=y") c.Response().Header().Set("Content-Usage", "train-genai=y,ai-use=y")
case false: case false:
c.Response().Header().Set("Content-Usage", "genai=n") c.Response().Header().Set("Content-Usage", "train-genai=n,ai-use=n")
} }
} }
} }