mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-24 06:46:39 +00:00
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
package transformers
|
|
|
|
// This is a wrapper to statisfy the GRPC service interface
|
|
// It is meant to be used by the main executable that is the server for the specific backend type (falcon, gpt3, etc)
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/go-skynet/LocalAI/pkg/grpc/base"
|
|
pb "github.com/go-skynet/LocalAI/pkg/grpc/proto"
|
|
"github.com/rs/zerolog/log"
|
|
|
|
transformers "github.com/go-skynet/go-ggml-transformers.cpp"
|
|
)
|
|
|
|
type GPTJ struct {
|
|
base.Base
|
|
|
|
gptj *transformers.GPTJ
|
|
}
|
|
|
|
func (llm *GPTJ) Load(opts *pb.ModelOptions) error {
|
|
if llm.Base.State != pb.StatusResponse_UNINITIALIZED {
|
|
log.Warn().Msgf("gptj backend loading %s while already in state %s!", opts.Model, llm.Base.State.String())
|
|
}
|
|
|
|
llm.Base.Lock()
|
|
defer llm.Base.Unlock()
|
|
model, err := transformers.NewGPTJ(opts.ModelFile)
|
|
llm.gptj = model
|
|
return err
|
|
}
|
|
|
|
func (llm *GPTJ) Predict(opts *pb.PredictOptions) (string, error) {
|
|
llm.Base.Lock()
|
|
defer llm.Base.Unlock()
|
|
return llm.gptj.Predict(opts.Prompt, buildPredictOptions(opts)...)
|
|
}
|
|
|
|
// fallback to Predict
|
|
func (llm *GPTJ) PredictStream(opts *pb.PredictOptions, results chan string) error {
|
|
llm.Base.Lock()
|
|
go func() {
|
|
res, err := llm.gptj.Predict(opts.Prompt, buildPredictOptions(opts)...)
|
|
|
|
if err != nil {
|
|
fmt.Println("err: ", err)
|
|
}
|
|
results <- res
|
|
close(results)
|
|
llm.Base.Unlock()
|
|
}()
|
|
return nil
|
|
}
|