Skip to main content

MegaCallResult

Represents the result of a mega call containing multiple analysis types.

from respectify.schemas import CommentRelevanceResult, CommentScore, DogwhistleResult, LlmDetectionResult, MegaCallResult, PerspectiveAnalyzeCommentResponse, SpamDetectionResult

Fields

comment_score

Comment score result. Null unless requested via include_comment_score (Python) or 'commentscore' service (PHP).

result.comment_score: Optional[CommentScore]

spam_check

Spam detection result. Null unless requested via include_spam (Python) or 'spam' service (PHP).

result.spam_check: Optional[SpamDetectionResult]

relevance_check

Comment relevance result. Null unless requested via include_relevance (Python) or 'relevance' service (PHP).

result.relevance_check: Optional[CommentRelevanceResult]

dogwhistle_check

Dogwhistle detection result. Null unless requested via include_dogwhistle (Python) or 'dogwhistle' service (PHP).

result.dogwhistle_check: Optional[DogwhistleResult]

perspective

Perspective-compatible analyzeComment response. Null unless requested via include_perspective_analyze_comment (Python) or 'perspectiveAnalyzeComment' service (PHP).

result.perspective: Optional[PerspectiveAnalyzeCommentResponse]

llm_detection

LLM-likeness detection result. Null unless requested via include_llm_detection.

result.llm_detection: Optional[LlmDetectionResult]