mirror of
https://github.com/mudler/LocalAI.git
synced 2025-06-27 21:24:59 +00:00
10 lines
166 B
Go
10 lines
166 B
Go
package schema
|
|
|
|
type TokenizeRequest struct {
|
|
BasicModelRequest
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type TokenizeResponse struct {
|
|
Tokens []int32 `json:"tokens"`
|
|
}
|