CacheControlBlock 缓存控制块 用于 Prompt Caching 功能
| 107 | // CacheControlBlock 缓存控制块 |
| 108 | // 用于 Prompt Caching 功能 |
| 109 | type CacheControlBlock struct { |
| 110 | // Type 缓存类型: "ephemeral" |
| 111 | Type string `json:"type"` |
| 112 | |
| 113 | // Content 被缓存的内容 |
| 114 | Content ContentBlock `json:"content"` |
| 115 | } |
| 116 | |
| 117 | func (c *CacheControlBlock) IsContentBlock() {} |
| 118 |
nothing calls this directly
no outgoing calls
no test coverage detected