2023-07-14 23:19:43 +00:00
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
2024-02-21 01:21:19 +00:00
|
|
|
"github.com/go-skynet/LocalAI/core/schema"
|
2023-07-14 23:19:43 +00:00
|
|
|
pb "github.com/go-skynet/LocalAI/pkg/grpc/proto"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LLM interface {
|
2023-08-18 19:23:14 +00:00
|
|
|
Busy() bool
|
2023-08-20 12:04:45 +00:00
|
|
|
Lock()
|
|
|
|
Unlock()
|
|
|
|
Locking() bool
|
2023-07-14 23:19:43 +00:00
|
|
|
Predict(*pb.PredictOptions) (string, error)
|
2023-07-14 23:19:43 +00:00
|
|
|
PredictStream(*pb.PredictOptions, chan string) error
|
2023-07-14 23:19:43 +00:00
|
|
|
Load(*pb.ModelOptions) error
|
2023-07-14 23:19:43 +00:00
|
|
|
Embeddings(*pb.PredictOptions) ([]float32, error)
|
2023-07-14 23:19:43 +00:00
|
|
|
GenerateImage(*pb.GenerateImageRequest) error
|
2024-04-29 17:42:37 +00:00
|
|
|
AudioTranscription(*pb.TranscriptRequest) (schema.TranscriptionResult, error)
|
2023-07-14 23:19:43 +00:00
|
|
|
TTS(*pb.TTSRequest) error
|
2023-08-18 19:23:14 +00:00
|
|
|
TokenizeString(*pb.PredictOptions) (pb.TokenizationResponse, error)
|
|
|
|
Status() (pb.StatusResponse, error)
|
2024-03-22 20:14:04 +00:00
|
|
|
|
|
|
|
StoresSet(*pb.StoresSetOptions) error
|
|
|
|
StoresDelete(*pb.StoresDeleteOptions) error
|
|
|
|
StoresGet(*pb.StoresGetOptions) (pb.StoresGetResult, error)
|
|
|
|
StoresFind(*pb.StoresFindOptions) (pb.StoresFindResult, error)
|
2023-07-14 23:19:43 +00:00
|
|
|
}
|
2023-07-27 16:41:04 +00:00
|
|
|
|
|
|
|
func newReply(s string) *pb.Reply {
|
|
|
|
return &pb.Reply{Message: []byte(s)}
|
|
|
|
}
|