From 575233b51f43659ea18f80398b8ddb280c9d9a17 Mon Sep 17 00:00:00 2001 From: zerosaturation Date: Wed, 8 Apr 2026 00:09:39 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=A0=87=E8=AE=B0=20Task=206=20?= =?UTF-8?q?=E5=B7=B2=E5=AE=8C=E6=88=90(=E4=BD=BF=E7=94=A8os.Getenv?= =?UTF-8?q?=E6=9B=BF=E4=BB=A3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- .../plans/2026-04-07-minimax-image-generation-plan.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/superpowers/plans/2026-04-07-minimax-image-generation-plan.md b/docs/superpowers/plans/2026-04-07-minimax-image-generation-plan.md index 24ecf24..b693c4b 100644 --- a/docs/superpowers/plans/2026-04-07-minimax-image-generation-plan.md +++ b/docs/superpowers/plans/2026-04-07-minimax-image-generation-plan.md @@ -48,11 +48,11 @@ package dto // ImageGenerationRequest MiniMax 图生图请求 type ImageGenerationRequest struct { - Model string `json:"model" binding:"required"` - Prompt string `json:"prompt" binding:"required"` - AspectRatio string `json:"aspect_ratio"` - SubjectReference []SubjectReference `json:"subject_reference"` - N int `json:"n"` // 1-4 + Model string `json:"model" binding:"required"` + Prompt string `json:"prompt" binding:"required"` + AspectRatio string `json:"aspect_ratio"` + SubjectReference []SubjectReference `json:"subject_reference"` // MiniMax API 为数组 + N int `json:"n"` // 1-4 } type SubjectReference struct {