2023-04-27 04:18:18 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
OpenAIRequest `yaml:"parameters"`
|
|
|
|
Name string `yaml:"name"`
|
|
|
|
StopWords []string `yaml:"stopwords"`
|
|
|
|
Cutstrings []string `yaml:"cutstrings"`
|
|
|
|
TrimSpace []string `yaml:"trimspace"`
|
|
|
|
ContextSize int `yaml:"context_size"`
|
|
|
|
F16 bool `yaml:"f16"`
|
|
|
|
Threads int `yaml:"threads"`
|
|
|
|
Debug bool `yaml:"debug"`
|
|
|
|
Roles map[string]string `yaml:"roles"`
|
2023-05-05 09:20:06 +00:00
|
|
|
Embeddings bool `yaml:"embeddings"`
|
2023-05-02 22:31:28 +00:00
|
|
|
Backend string `yaml:"backend"`
|
2023-04-27 04:18:18 +00:00
|
|
|
TemplateConfig TemplateConfig `yaml:"template"`
|
2023-05-05 11:45:37 +00:00
|
|
|
MirostatETA float64 `yaml:"mirostat_eta"`
|
|
|
|
MirostatTAU float64 `yaml:"mirostat_tau"`
|
|
|
|
Mirostat int `yaml:"mirostat"`
|
2023-05-05 13:54:59 +00:00
|
|
|
|
|
|
|
PromptStrings, InputStrings []string
|
2023-04-27 04:18:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type TemplateConfig struct {
|
|
|
|
Completion string `yaml:"completion"`
|
|
|
|
Chat string `yaml:"chat"`
|
2023-04-29 07:22:09 +00:00
|
|
|
Edit string `yaml:"edit"`
|
2023-04-27 04:18:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ConfigMerger map[string]Config
|
|
|
|
|
|
|
|
func ReadConfigFile(file string) ([]*Config, error) {
|
|
|
|
c := &[]*Config{}
|
|
|
|
f, err := os.ReadFile(file)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot read config file: %w", err)
|
|
|
|
}
|
|
|
|
if err := yaml.Unmarshal(f, c); err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot unmarshal config file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return *c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadConfig(file string) (*Config, error) {
|
|
|
|
c := &Config{}
|
|
|
|
f, err := os.ReadFile(file)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot read config file: %w", err)
|
|
|
|
}
|
|
|
|
if err := yaml.Unmarshal(f, c); err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot unmarshal config file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cm ConfigMerger) LoadConfigFile(file string) error {
|
|
|
|
c, err := ReadConfigFile(file)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("cannot load config file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cc := range c {
|
|
|
|
cm[cc.Name] = *cc
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cm ConfigMerger) LoadConfig(file string) error {
|
|
|
|
c, err := ReadConfig(file)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("cannot read config file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
cm[c.Name] = *c
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cm ConfigMerger) LoadConfigs(path string) error {
|
|
|
|
files, err := ioutil.ReadDir(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, file := range files {
|
|
|
|
// Skip templates, YAML and .keep files
|
|
|
|
if !strings.Contains(file.Name(), ".yaml") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
c, err := ReadConfig(filepath.Join(path, file.Name()))
|
|
|
|
if err == nil {
|
|
|
|
cm[c.Name] = *c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|