2023-07-14 23:19:43 +00:00
|
|
|
package backend
|
|
|
|
|
|
|
|
import (
|
|
|
|
config "github.com/go-skynet/LocalAI/api/config"
|
|
|
|
"github.com/go-skynet/LocalAI/api/options"
|
2023-07-14 23:19:43 +00:00
|
|
|
"github.com/go-skynet/LocalAI/pkg/grpc/proto"
|
2023-07-14 23:19:43 +00:00
|
|
|
model "github.com/go-skynet/LocalAI/pkg/model"
|
|
|
|
)
|
|
|
|
|
2023-08-17 21:38:59 +00:00
|
|
|
func ImageGeneration(height, width, mode, step, seed int, positive_prompt, negative_prompt, src, dst string, loader *model.ModelLoader, c config.Config, o *options.Option) (func() error, error) {
|
2023-07-14 23:19:43 +00:00
|
|
|
|
2023-08-18 23:49:33 +00:00
|
|
|
opts := modelOpts(c, o, []model.Option{
|
2023-07-14 23:19:43 +00:00
|
|
|
model.WithBackendString(c.Backend),
|
|
|
|
model.WithAssetDir(o.AssetsDestination),
|
|
|
|
model.WithThreads(uint32(c.Threads)),
|
2023-07-14 23:19:43 +00:00
|
|
|
model.WithContext(o.Context),
|
2023-08-09 06:38:51 +00:00
|
|
|
model.WithModel(c.Model),
|
|
|
|
model.WithLoadGRPCLoadModelOpts(&proto.ModelOptions{
|
|
|
|
CUDA: c.Diffusers.CUDA,
|
|
|
|
SchedulerType: c.Diffusers.SchedulerType,
|
|
|
|
PipelineType: c.Diffusers.PipelineType,
|
2023-08-15 23:11:42 +00:00
|
|
|
CFGScale: c.Diffusers.CFGScale,
|
2023-08-17 21:38:59 +00:00
|
|
|
IMG2IMG: c.Diffusers.IMG2IMG,
|
|
|
|
CLIPModel: c.Diffusers.ClipModel,
|
|
|
|
CLIPSubfolder: c.Diffusers.ClipSubFolder,
|
|
|
|
CLIPSkip: int32(c.Diffusers.ClipSkip),
|
2023-08-09 06:38:51 +00:00
|
|
|
}),
|
2023-08-18 23:49:33 +00:00
|
|
|
})
|
2023-07-20 20:10:12 +00:00
|
|
|
|
|
|
|
inferenceModel, err := loader.BackendLoader(
|
|
|
|
opts...,
|
2023-07-14 23:19:43 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-07-14 23:19:43 +00:00
|
|
|
fn := func() error {
|
|
|
|
_, err := inferenceModel.GenerateImage(
|
|
|
|
o.Context,
|
|
|
|
&proto.GenerateImageRequest{
|
2023-08-14 21:12:00 +00:00
|
|
|
Height: int32(height),
|
|
|
|
Width: int32(width),
|
|
|
|
Mode: int32(mode),
|
|
|
|
Step: int32(step),
|
|
|
|
Seed: int32(seed),
|
2023-08-17 21:38:59 +00:00
|
|
|
CLIPSkip: int32(c.Diffusers.ClipSkip),
|
2023-08-14 21:12:00 +00:00
|
|
|
PositivePrompt: positive_prompt,
|
|
|
|
NegativePrompt: negative_prompt,
|
|
|
|
Dst: dst,
|
2023-08-17 21:38:59 +00:00
|
|
|
Src: src,
|
2023-08-14 21:12:00 +00:00
|
|
|
EnableParameters: c.Diffusers.EnableParameters,
|
2023-07-14 23:19:43 +00:00
|
|
|
})
|
|
|
|
return err
|
2023-07-14 23:19:43 +00:00
|
|
|
}
|
|
|
|
|
2023-08-18 19:23:14 +00:00
|
|
|
return fn, nil
|
2023-07-14 23:19:43 +00:00
|
|
|
}
|