1
0
mirror of https://github.com/fumiama/deepinfra.git synced 2026-06-05 00:32:46 +08:00

init: add codes

This commit is contained in:
源文雨
2025-02-14 15:34:05 +09:00
parent 4d4f1f5cb7
commit 507e407127
6 changed files with 184 additions and 0 deletions

12
model.go Normal file
View File

@@ -0,0 +1,12 @@
package deepinfra
import (
"bytes"
"io"
)
type Model interface {
Body() *bytes.Buffer
Parse(io.Reader) error
Output() string
}