2024-01-05 17:04:46 +00:00
|
|
|
package backend
|
|
|
|
|
|
|
|
import (
|
2024-03-01 15:19:53 +00:00
|
|
|
"github.com/go-skynet/LocalAI/core/config"
|
|
|
|
|
2024-01-05 17:04:46 +00:00
|
|
|
"github.com/go-skynet/LocalAI/pkg/grpc/proto"
|
2024-04-17 21:33:49 +00:00
|
|
|
model "github.com/go-skynet/LocalAI/pkg/model"
|
2024-01-05 17:04:46 +00:00
|
|
|
)
|
|
|
|
|
2024-04-17 21:33:49 +00:00
|
|
|
func ImageGeneration(height, width, mode, step, seed int, positive_prompt, negative_prompt, src, dst string, loader *model.ModelLoader, backendConfig config.BackendConfig, appConfig *config.ApplicationConfig) (func() error, error) {
|
2024-03-07 13:37:45 +00:00
|
|
|
threads := backendConfig.Threads
|
2024-03-13 09:05:30 +00:00
|
|
|
if *threads == 0 && appConfig.Threads != 0 {
|
|
|
|
threads = &appConfig.Threads
|
2024-03-07 13:37:45 +00:00
|
|
|
}
|
|
|
|
gRPCOpts := gRPCModelOpts(backendConfig)
|
2024-03-01 15:19:53 +00:00
|
|
|
opts := modelOpts(backendConfig, appConfig, []model.Option{
|
|
|
|
model.WithBackendString(backendConfig.Backend),
|
|
|
|
model.WithAssetDir(appConfig.AssetsDestination),
|
2024-03-13 09:05:30 +00:00
|
|
|
model.WithThreads(uint32(*threads)),
|
2024-03-01 15:19:53 +00:00
|
|
|
model.WithContext(appConfig.Context),
|
|
|
|
model.WithModel(backendConfig.Model),
|
2024-03-07 13:37:45 +00:00
|
|
|
model.WithLoadGRPCLoadModelOpts(gRPCOpts),
|
2024-01-05 17:04:46 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
inferenceModel, err := loader.BackendLoader(
|
|
|
|
opts...,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fn := func() error {
|
|
|
|
_, err := inferenceModel.GenerateImage(
|
2024-03-01 15:19:53 +00:00
|
|
|
appConfig.Context,
|
2024-01-05 17:04:46 +00:00
|
|
|
&proto.GenerateImageRequest{
|
|
|
|
Height: int32(height),
|
|
|
|
Width: int32(width),
|
|
|
|
Mode: int32(mode),
|
|
|
|
Step: int32(step),
|
|
|
|
Seed: int32(seed),
|
2024-03-01 15:19:53 +00:00
|
|
|
CLIPSkip: int32(backendConfig.Diffusers.ClipSkip),
|
2024-01-05 17:04:46 +00:00
|
|
|
PositivePrompt: positive_prompt,
|
|
|
|
NegativePrompt: negative_prompt,
|
|
|
|
Dst: dst,
|
|
|
|
Src: src,
|
2024-03-01 15:19:53 +00:00
|
|
|
EnableParameters: backendConfig.Diffusers.EnableParameters,
|
2024-01-05 17:04:46 +00:00
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fn, nil
|
|
|
|
}
|