LocalAI/core/schema/tokenize.go
Dave Lee c1f30ba3a9
squash past, centralize request middleware PR
Signed-off-by: Dave Lee <dave@gray101.com>
2025-02-05 14:14:10 -05:00

10 lines
166 B
Go

package schema
type TokenizeRequest struct {
BasicModelRequest
Content string `json:"content"`
}
type TokenizeResponse struct {
Tokens []int32 `json:"tokens"`
}