LocalAI/pkg/grpc/interface.go

13 lines
273 B
Go
Raw Normal View History

package grpc
import (
pb "github.com/go-skynet/LocalAI/pkg/grpc/proto"
)
type LLM interface {
Predict(*pb.PredictOptions) (string, error)
PredictStream(*pb.PredictOptions, chan string)
Load(*pb.ModelOptions) error
Embeddings(*pb.PredictOptions) ([]float32, error)
}