feat(diffusers): various enhancements (#895)

This commit is contained in:
Ettore Di Giacinto 2023-08-14 23:12:00 +02:00 committed by GitHub
parent 77e1ae3d70
commit a96c3bc885
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 165 additions and 101 deletions

View file

@ -42,9 +42,10 @@ type Config struct {
}
type Diffusers struct {
PipelineType string `yaml:"pipeline_type"`
SchedulerType string `yaml:"scheduler_type"`
CUDA bool `yaml:"cuda"`
PipelineType string `yaml:"pipeline_type"`
SchedulerType string `yaml:"scheduler_type"`
CUDA bool `yaml:"cuda"`
EnableParameters string `yaml:"enable_parameters"` // A list of comma separated parameters to specify
}
type LLMConfig struct {