axonhub / llm /cache.go
llzai's picture
Upload 1793 files
9853396 verified
package llm
// CacheControl represents cache control configuration.
// This field is used internally for provider-specific cache control
// and should not be serialized in the standard llm JSON format.
type CacheControl struct {
Type string `json:"type,omitempty"`
TTL string `json:"ttl,omitempty"`
}