Files
openai.openai-go/packages/param/metadata.go
2025-02-24 09:59:52 -05:00

10 lines
149 B
Go

package param
import "encoding/json"
type MetadataProvider interface {
IsNull() bool
RawResponse() json.RawMessage
IsOverridden() (any, bool)
}