Files
ai-customer-service/internal/domain/intent/intent.go
Your Name 06eeb5776b
Some checks failed
CI / verify (push) Failing after 24s
style(go): apply gofmt to repository
2026-05-06 12:22:41 +08:00

20 lines
494 B
Go

package intent
type Result struct {
Intent string `json:"intent"`
Confidence float64 `json:"confidence"`
Entities map[string]string `json:"entities,omitempty"`
NeedsHuman bool `json:"needs_human"`
Sensitive bool `json:"sensitive"`
}
const (
IntentQuota = "quota"
IntentToken = "token"
IntentError = "error"
IntentHandoff = "handoff"
IntentGeneral = "general"
IntentRefund = "refund"
IntentSecurity = "security"
)