Documentation ¶
Index ¶
- Constants
- type Aspect
- type Client
- func (c *Client) CorrectMultiImage(request *CorrectMultiImageRequest) (response *CorrectMultiImageResponse, err error)
- func (c *Client) DescribeTask(request *DescribeTaskRequest) (response *DescribeTaskResponse, err error)
- func (c *Client) ECC(request *ECCRequest) (response *ECCResponse, err error)
- func (c *Client) EHOCR(request *EHOCRRequest) (response *EHOCRResponse, err error)
- type CompostionContext
- type CorrectData
- type CorrectMultiImageRequest
- type CorrectMultiImageResponse
- type DescribeTaskRequest
- type DescribeTaskResponse
- type ECCRequest
- type ECCResponse
- type EHOCRRequest
- type EHOCRResponse
- type ErrorCoordinate
- type ScoreCategory
- type SentenceCom
- type SentenceItem
- type SentenceSuggest
Constants ¶
View Source
const APIVersion = "2018-12-13"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
func NewClient ¶
func NewClient(credential *common.Credential, region string, clientProfile *profile.ClientProfile) (client *Client, err error)
func NewClientWithSecretId ¶
Deprecated
func (*Client) CorrectMultiImage ¶
func (c *Client) CorrectMultiImage(request *CorrectMultiImageRequest) (response *CorrectMultiImageResponse, err error)
https://ecc.tencentcloudapi.com/?Action=CorrectMultiImage 多图像识别批改接口
func (*Client) DescribeTask ¶
func (c *Client) DescribeTask(request *DescribeTaskRequest) (response *DescribeTaskResponse, err error)
异步任务结果查询接口
func (*Client) ECC ¶
func (c *Client) ECC(request *ECCRequest) (response *ECCResponse, err error)
接口请求域名: ecc.tencentcloudapi.com 纯文本英语作文批改
func (*Client) EHOCR ¶
func (c *Client) EHOCR(request *EHOCRRequest) (response *EHOCRResponse, err error)
type CompostionContext ¶
type CompostionContext struct { // 作文内容 Content *string `json:"Content,omitempty" name:"Content"` // 批改结果 // 注意:此字段可能返回 null,表示取不到有效值。 CorrectData *CorrectData `json:"CorrectData,omitempty" name:"CorrectData"` // 任务 id,用于查询接口 // 注意:此字段可能返回 null,表示取不到有效值。 TaskId *string `json:"TaskId,omitempty" name:"TaskId"` // 图像识别唯一标识,一次识别一个 SessionId // 注意:此字段可能返回 null,表示取不到有效值。 SessionId *string `json:"SessionId,omitempty" name:"SessionId"` }
type CorrectData ¶
type CorrectData struct { // 总得分 Score *float64 `json:"Score,omitempty" name:"Score"` // 各项得分详情 ScoreCat *ScoreCategory `json:"ScoreCat,omitempty" name:"ScoreCat"` // 综合评价 Comment *string `json:"Comment,omitempty" name:"Comment"` // 句子点评 SentenceComments []*SentenceCom `json:"SentenceComments,omitempty" name:"SentenceComments" list` }
type CorrectMultiImageRequest ¶
type CorrectMultiImageRequest struct { *tchttp.BaseRequest // 图片的url链接或base64数据。每张图片数据作为数组的一个元素,数组个数与图片个数保持一致。存放类别依据InputType而定,url与base64编码不能混合使用。 Image []*string `json:"Image,omitempty" name:"Image" list` // 输出图片类型,0 表示 Image 字段是图片所在的 url,1 表示 Image 字段是 base64 编码后的图像数据。 InputType *int64 `json:"InputType,omitempty" name:"InputType"` // 业务应用ID,与账号应用APPID无关,是用来方便客户管理服务的参数。 EccAppid *string `json:"EccAppid,omitempty" name:"EccAppid"` // 图像识别唯一标识,一次识别一个 SessionId,使用识别功能时 SessionId 可用于使用文本批改接口,此时按图像批改价格收费;如使用文本批改接口时没有传入 SessionId,则需要收取文本批改的费用。 SessionId *string `json:"SessionId,omitempty" name:"SessionId"` // 服务类型,0:“多图像识别”,只返回识别结果;1:“多图像批改”,同时返回识别结果与批改结果。默认为 0。 ServerType *int64 `json:"ServerType,omitempty" name:"ServerType"` // 作文题目,可选参数 Title *string `json:"Title,omitempty" name:"Title"` // 年级标准, 默认以 cet4 为标准,取值与意义如下:elementary 小学,grade7 grade8 grade9分别对应初一,初二,初三。 grade10 grade11 grade12 分别对应高一,高二,高三,以及 cet4 和 cet6 分别表示 英语4级和6级。 Grade *string `json:"Grade,omitempty" name:"Grade"` // 作文提纲,可选参数,作文的写作要求。 Requirement *string `json:"Requirement,omitempty" name:"Requirement"` // 范文标题,可选参数,本接口可以依据提供的范文对作文进行评分。 ModelTitle *string `json:"ModelTitle,omitempty" name:"ModelTitle"` // 范文内容,可选参数,同上,范文的正文部分。 ModelContent *string `json:"ModelContent,omitempty" name:"ModelContent"` // 异步模式标识,0:同步模式,1:异步模式。默认为同步模式 IsAsync *int64 `json:"IsAsync,omitempty" name:"IsAsync"` }
func NewCorrectMultiImageRequest ¶
func NewCorrectMultiImageRequest() (request *CorrectMultiImageRequest)
func (*CorrectMultiImageRequest) FromJsonString ¶
func (r *CorrectMultiImageRequest) FromJsonString(s string) error
func (*CorrectMultiImageRequest) ToJsonString ¶
func (r *CorrectMultiImageRequest) ToJsonString() string
type CorrectMultiImageResponse ¶
type CorrectMultiImageResponse struct { *tchttp.BaseResponse Response *struct { // 接口返回数据 Data *CompostionContext `json:"Data,omitempty" name:"Data"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewCorrectMultiImageResponse ¶
func NewCorrectMultiImageResponse() (response *CorrectMultiImageResponse)
func (*CorrectMultiImageResponse) FromJsonString ¶
func (r *CorrectMultiImageResponse) FromJsonString(s string) error
func (*CorrectMultiImageResponse) ToJsonString ¶
func (r *CorrectMultiImageResponse) ToJsonString() string
type DescribeTaskRequest ¶
type DescribeTaskRequest struct { *tchttp.BaseRequest // 任务 ID TaskId *string `json:"TaskId,omitempty" name:"TaskId"` // 业务应用ID,与账号应用APPID无关,是用来方便客户管理服务的参数(暂时无需传入)。 EccAppid *string `json:"EccAppid,omitempty" name:"EccAppid"` }
func NewDescribeTaskRequest ¶
func NewDescribeTaskRequest() (request *DescribeTaskRequest)
func (*DescribeTaskRequest) FromJsonString ¶
func (r *DescribeTaskRequest) FromJsonString(s string) error
func (*DescribeTaskRequest) ToJsonString ¶
func (r *DescribeTaskRequest) ToJsonString() string
type DescribeTaskResponse ¶
type DescribeTaskResponse struct { *tchttp.BaseResponse Response *struct { // 作文识别文本 // 注意:此字段可能返回 null,表示取不到有效值。 Content *string `json:"Content,omitempty" name:"Content"` // 整体的批改结果 // 注意:此字段可能返回 null,表示取不到有效值。 CorrectData *CorrectData `json:"CorrectData,omitempty" name:"CorrectData"` // 任务状态,“Progressing”: 处理中(此时无结果返回)、“Finished”: 处理完成 Status *string `json:"Status,omitempty" name:"Status"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewDescribeTaskResponse ¶
func NewDescribeTaskResponse() (response *DescribeTaskResponse)
func (*DescribeTaskResponse) FromJsonString ¶
func (r *DescribeTaskResponse) FromJsonString(s string) error
func (*DescribeTaskResponse) ToJsonString ¶
func (r *DescribeTaskResponse) ToJsonString() string
type ECCRequest ¶
type ECCRequest struct { *tchttp.BaseRequest // 作文文本,必填 Content *string `json:"Content,omitempty" name:"Content"` // 作文题目,可选参数 Title *string `json:"Title,omitempty" name:"Title"` // 年级标准, 默认以cet4为标准,取值与意义如下:elementary 小学,grade7 grade8 grade9分别对应初一,初二,初三。 grade10 grade11 grade12 分别对应高一,高二,高三,以及cet4和cet6 分别表示 英语4级和6级。 Grade *string `json:"Grade,omitempty" name:"Grade"` // 作文提纲,可选参数,作文的写作要求。 Requirement *string `json:"Requirement,omitempty" name:"Requirement"` // 范文标题,可选参数,本接口可以依据提供的范文对作文进行评分。 ModelTitle *string `json:"ModelTitle,omitempty" name:"ModelTitle"` // 范文内容,可选参数,同上,范文的正文部分。 ModelContent *string `json:"ModelContent,omitempty" name:"ModelContent"` // 业务应用ID,与账号应用APPID无关,是用来方便客户管理服务的参数(暂时无需传入)。 EccAppid *string `json:"EccAppid,omitempty" name:"EccAppid"` // 异步模式标识,0:同步模式,1:异步模式,默认为同步模式 IsAsync *int64 `json:"IsAsync,omitempty" name:"IsAsync"` // 图像识别唯一标识,一次识别一个 SessionId。当传入此前识别接口使用过的 SessionId,则本次批改按图像批改价格收费;如使用了识别接口且本次没有传入 SessionId,则需要加取文本批改的费用;如果直接使用文本批改接口,则只收取文本批改的费用 SessionId *string `json:"SessionId,omitempty" name:"SessionId"` }
func NewECCRequest ¶
func NewECCRequest() (request *ECCRequest)
func (*ECCRequest) FromJsonString ¶
func (r *ECCRequest) FromJsonString(s string) error
func (*ECCRequest) ToJsonString ¶
func (r *ECCRequest) ToJsonString() string
type ECCResponse ¶
type ECCResponse struct { *tchttp.BaseResponse Response *struct { // 整体的批改结果 // 注意:此字段可能返回 null,表示取不到有效值。 Data *CorrectData `json:"Data,omitempty" name:"Data"` // 任务 id,用于查询接口 // 注意:此字段可能返回 null,表示取不到有效值。 TaskId *string `json:"TaskId,omitempty" name:"TaskId"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewECCResponse ¶
func NewECCResponse() (response *ECCResponse)
func (*ECCResponse) FromJsonString ¶
func (r *ECCResponse) FromJsonString(s string) error
func (*ECCResponse) ToJsonString ¶
func (r *ECCResponse) ToJsonString() string
type EHOCRRequest ¶
type EHOCRRequest struct { *tchttp.BaseRequest // 图片所在的url或base64编码后的图像数据,依据InputType而定 Image *string `json:"Image,omitempty" name:"Image"` // 输出图片类型,0 表示 Image 字段是图片所在的 url,1 表示 Image 字段是 base64 编码后的图像数据 InputType *int64 `json:"InputType,omitempty" name:"InputType"` // 业务应用ID,与账号应用APPID无关,是用来方便客户管理服务的参数(暂时无需传入)。 EccAppid *string `json:"EccAppid,omitempty" name:"EccAppid"` // 图像识别唯一标识,一次识别一个 SessionId,使用识别功能时 SessionId 可用于使用文本批改接口,此时按图像批改价格收费;如使用文本批改接口时没有传入 SessionId,则需要收取文本批改的费用 SessionId *string `json:"SessionId,omitempty" name:"SessionId"` // 服务类型,0:“图像识别”,只返回识别结果,1:“图像批改”,同时返回识别结果与批改结果。默认为 0 ServerType *int64 `json:"ServerType,omitempty" name:"ServerType"` // 作文题目,可选参数 Title *string `json:"Title,omitempty" name:"Title"` // 年级标准, 默认以 cet4 为标准,取值与意义如下:elementary 小学,grade7 grade8 grade9分别对应初一,初二,初三。 grade10 grade11 grade12 分别对应高一,高二,高三,以及 cet4 和 cet6 分别表示 英语4级和6级。 Grade *string `json:"Grade,omitempty" name:"Grade"` // 作文提纲,可选参数,作文的写作要求。 Requirement *string `json:"Requirement,omitempty" name:"Requirement"` // 范文标题,可选参数,本接口可以依据提供的范文对作文进行评分。 ModelTitle *string `json:"ModelTitle,omitempty" name:"ModelTitle"` // 范文内容,可选参数,同上,范文的正文部分。 ModelContent *string `json:"ModelContent,omitempty" name:"ModelContent"` // 异步模式标识,0:同步模式,1:异步模式。默认为同步模式 IsAsync *int64 `json:"IsAsync,omitempty" name:"IsAsync"` }
func NewEHOCRRequest ¶
func NewEHOCRRequest() (request *EHOCRRequest)
func (*EHOCRRequest) FromJsonString ¶
func (r *EHOCRRequest) FromJsonString(s string) error
func (*EHOCRRequest) ToJsonString ¶
func (r *EHOCRRequest) ToJsonString() string
type EHOCRResponse ¶
type EHOCRResponse struct { *tchttp.BaseResponse Response *struct { // 接口返回数据 Data *CompostionContext `json:"Data,omitempty" name:"Data"` // 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 RequestId *string `json:"RequestId,omitempty" name:"RequestId"` } `json:"Response"` }
func NewEHOCRResponse ¶
func NewEHOCRResponse() (response *EHOCRResponse)
func (*EHOCRResponse) FromJsonString ¶
func (r *EHOCRResponse) FromJsonString(s string) error
func (*EHOCRResponse) ToJsonString ¶
func (r *EHOCRResponse) ToJsonString() string
type ErrorCoordinate ¶
type ErrorCoordinate struct { // 维度单词坐标 Coordinate []*int64 `json:"Coordinate,omitempty" name:"Coordinate" list` }
type ScoreCategory ¶
type ScoreCategory struct { // 词汇维度 Words *Aspect `json:"Words,omitempty" name:"Words"` // 句子维度 Sentences *Aspect `json:"Sentences,omitempty" name:"Sentences"` // 篇章结构维度 Structure *Aspect `json:"Structure,omitempty" name:"Structure"` // 内容维度 Content *Aspect `json:"Content,omitempty" name:"Content"` // 维度得分 Score *float64 `json:"Score,omitempty" name:"Score"` // 维度分数占比 Percentage *float64 `json:"Percentage,omitempty" name:"Percentage"` }
type SentenceCom ¶
type SentenceCom struct { // 句子错误纠正信息 Suggestions []*SentenceSuggest `json:"Suggestions,omitempty" name:"Suggestions" list` // 句子信息 Sentence *SentenceItem `json:"Sentence,omitempty" name:"Sentence"` }
type SentenceItem ¶
type SentenceSuggest ¶
type SentenceSuggest struct { // 类型 Type *string `json:"Type,omitempty" name:"Type"` // 错误类型 ErrorType *string `json:"ErrorType,omitempty" name:"ErrorType"` // 原始单词 Origin *string `json:"Origin,omitempty" name:"Origin"` // 替换成 的单词 Replace *string `json:"Replace,omitempty" name:"Replace"` // 提示信息 Message *string `json:"Message,omitempty" name:"Message"` // 维度单词位置,在句子的第几个到第几个单词之间 ErrorPosition []*int64 `json:"ErrorPosition,omitempty" name:"ErrorPosition" list` // 维度单词坐标,错误单词在图片中的坐标,只有传图片时正常返回,传文字时返回[ ] ErrorCoordinates []*ErrorCoordinate `json:"ErrorCoordinates,omitempty" name:"ErrorCoordinates" list` }
Click to show internal directories.
Click to hide internal directories.