Files
cursor-byok/internal/backend/agent/prompt/content_parts.go
T
2026-06-30 10:38:52 +08:00

16 lines
451 B
Go

package promptengine
// ContentPart 表示一条消息中的结构化内容块。
type ContentPart struct {
Type string `json:"type"`
Text string `json:"text,omitempty"`
Image *ImageContent `json:"image,omitempty"`
}
// ImageContent 表示消息中携带的一张图片。
type ImageContent struct {
MIMEType string `json:"mime_type,omitempty"`
Path string `json:"path,omitempty"`
Data []byte `json:"data,omitempty"`
}