Updated on 2023-07-17 GMT+08:00

Text Moderation (V2)

  1. This section describes how to use the Text Moderation SDK by AK/SK authentication.

    Replace the AK/SK in the sample code with the actual AK/SK. Set Text in TextDetectionItemsReq in the code to configure the text to be detected, and execute the code.

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    package main
    
    import (
        "fmt"
        "github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
        moderation "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/moderation/v2"
        "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/moderation/v2/model"
        region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/moderation/v2/region"
    )
    
    func main() {
           //Enter your AK/SK.
        ak := "<YOUR AK>"
        sk := "<YOUR SK>"
    
        auth := basic.NewCredentialsBuilder().
            WithAk(ak).
            WithSk(sk).
            Build()
    
        client := moderation.NewModerationClient(
            moderation.ModerationClientBuilder().
                WithRegion(region.ValueOf("cn-north-4")).
                WithCredential(auth).
                Build())
    
        request := &model.RunTextModerationRequest{}
        typeItemsTextDetectionItemsReq:= "content"
        var listItemsbody = []model.TextDetectionItemsReq{
            {
                Text: "text",     //Enter the text to be detected.
                Type: &typeItemsTextDetectionItemsReq,
            },
        }
        var listCategoriesbody = []string{
            "porn",
            "abuse",
            "contraband",
            "flood",
        }
        request.Body = &model.TextDetectionReq{
            Items: listItemsbody,
            Categories: &listCategoriesbody,
        }
        response, err := client.RunTextModeration(request)
        if err == nil {
            fmt.Printf("%+v\n", response)
        } else {
            fmt.Println(err)
        }}
    
  2. If the moderation result is displayed on the console, the code is successfully executed.
    RunTextModerationResponse {"result":{"suggestion":"block","detail":{"contraband":["potassium arsenite"],"porn":["nude chat"]}}} 
    Process exiting with code: 0