Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package laosiji
type GenerateTextToImageResponse struct {
TaskID string `json:"task_id"` // 任务 ID
}
type QueryTextToImageResponse struct {
TaskID string `json:"task_id"` // 任务 ID
Bid string `json:"bid"`
Fee string `json:"fee"`
Type string `json:"type"`
Status string `json:"status"` // 状态 0待处理 -1处理失败 1处理中 2处理成功
OutData string `json:"out_data"` // 输出数据 不同的ai 处理的数据不一样 查看文档的描述
}