Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidAttestation = errors.New("invalid attestation") ErrInvalidSignature = errors.New("invalid attestation signature") ErrInvalidAttestor = errors.New("attestor public key mismatch") ErrInvalidContentHash = errors.New("content hash mismatch") ErrExpiredAttestation = errors.New("attestation is expired") )
View Source
var ErrUnsupportedLanguage = errors.New("unsupported language")
ErrUnsupportedLanguage is returned when the moderation service does not support the language of the provided text.
Functions ¶
func NewIntegration ¶
func NewIntegration(attestor *commonpb.PublicKey) ocp_integration.Moderation
func ValidateAttestation ¶
func ValidateAttestation(attestation *moderationpb.ModerationAttestation, attestor *commonpb.PublicKey, content any) error
ValidateAttestation validates a moderation attestation against the expected attestor public key and content. Content must be a string (for text) or []byte (for images).
Types ¶
type Client ¶
type Client interface {
// ClassifyText classifies the provided text for moderation. The result
// indicates whether the text was flagged and includes per-category scores.
ClassifyText(ctx context.Context, text string) (*Result, error)
// ClassifyImage classifies the provided image data for moderation. The
// result indicates whether the image was flagged and includes per-category
// scores.
ClassifyImage(ctx context.Context, data []byte) (*Result, error)
// ClassifyCurrencyName checks whether a currency name infringes on
// existing trademarks, impersonates known brands, or is otherwise
// misleading. The result includes per-category scores for areas like
// cryptocurrency, financial_service, impersonation, etc.
ClassifyCurrencyName(ctx context.Context, name string) (*Result, error)
}
type Integration ¶
type Integration struct {
// contains filtered or unexported fields
}
func (*Integration) ValidateAttestation ¶
func (i *Integration) ValidateAttestation(_ context.Context, _ *ocp_common.Account, rawAttestation []byte, content any) (bool, error)
type Server ¶
type Server struct {
moderationpb.UnimplementedModerationServer
// contains filtered or unexported fields
}
func (*Server) ModerateImage ¶
func (s *Server) ModerateImage(ctx context.Context, req *moderationpb.ModerateImageRequest) (*moderationpb.ModerateImageResponse, error)
func (*Server) ModerateText ¶
func (s *Server) ModerateText(ctx context.Context, req *moderationpb.ModerateTextRequest) (*moderationpb.ModerateTextResponse, error)
Click to show internal directories.
Click to hide internal directories.