2025-12-10 18:33:37 +08:00
|
|
|
package formula
|
|
|
|
|
|
|
|
|
|
type CreateTaskResponse struct {
|
|
|
|
|
TaskNo string `json:"task_no"`
|
|
|
|
|
Status int `json:"status"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GetFormulaTaskResponse struct {
|
|
|
|
|
TaskNo string `json:"task_no"`
|
|
|
|
|
Status int `json:"status"`
|
|
|
|
|
Count int `json:"count"`
|
|
|
|
|
Latex string `json:"latex"`
|
|
|
|
|
}
|
2025-12-15 23:29:28 +08:00
|
|
|
|
|
|
|
|
// FormulaRecognitionResponse 公式识别服务返回的响应
|
|
|
|
|
type FormulaRecognitionResponse struct {
|
|
|
|
|
Result string `json:"result"`
|
|
|
|
|
}
|