mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-17 19:47:10 +08:00
16 lines
451 B
Go
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"`
|
|
}
|