mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-07 10:07:07 +00:00
10 lines
295 B
Go
10 lines
295 B
Go
package types
|
|
|
|
// TaskArtifact is the transport-neutral identity of one generated task output.
|
|
// relay/channel re-exports this type for adaptor compatibility.
|
|
type TaskArtifact struct {
|
|
Key string `json:"key"`
|
|
Type string `json:"type"`
|
|
MimeType string `json:"mimeType,omitempty"`
|
|
}
|