Chat / core /schema /tokenize.go
Baraaqasem's picture
Upload 711 files
651d019 verified
raw
history blame
178 Bytes
package schema
type TokenizeRequest struct {
Content string `json:"content"`
Model string `json:"model"`
}
type TokenizeResponse struct {
Tokens []int32 `json:"tokens"`
}