1
0
mirror of https://github.com/fumiama/deepinfra.git synced 2026-06-06 01:00:34 +08:00
Files
deepinfra/model.go
2025-02-14 15:34:05 +09:00

13 lines
134 B
Go

package deepinfra
import (
"bytes"
"io"
)
type Model interface {
Body() *bytes.Buffer
Parse(io.Reader) error
Output() string
}