mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-18 12:07:02 +08:00
v0.3.8
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user