mirror of
https://github.com/openai/openai-go.git
synced 2026-04-01 17:17:14 +09:00
10 lines
149 B
Go
10 lines
149 B
Go
package param
|
|
|
|
import "encoding/json"
|
|
|
|
type MetadataProvider interface {
|
|
IsNull() bool
|
|
RawResponse() json.RawMessage
|
|
IsOverridden() (any, bool)
|
|
}
|