Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
Database db.Config `yaml:"database"`
ObjectStore ObjectStoreConfig `yaml:"objectStore"`
// BaseModels is the list of base models to load. Currently each model follows Hugging Face's model format.
BaseModels []string `yaml:"baseModels"`
ModelLoadInterval time.Duration `yaml:"modelLoadInterval"`
// RunOnce is set to true when models are loaded only once.
RunOnce bool `yaml:"runOnce"`
// SkipDBUpdate is set to true when the loader skips updateing the "base-models" table.
SkipDBUpdate bool `yaml:"skipDbUpdate"`
Downloader DownloaderConfig `yaml:"downloader"`
Debug DebugConfig `yaml:"debug"`
}
Config is the configuration.
type DebugConfig ¶
type DebugConfig struct {
Standalone bool `yaml:"standalone"`
SqlitePath string `yaml:"sqlitePath"`
}
DebugConfig is the debug configuration.
type DownloaderConfig ¶
type DownloaderConfig struct {
HuggingFace HuggingFaceDownloaderConfig `yaml:"huggingFace"`
}
DownloaderConfig is the downloader configuration.
func (*DownloaderConfig) Validate ¶
func (c *DownloaderConfig) Validate() error
Validate validates the downloader configuration.
type HuggingFaceDownloaderConfig ¶
type HuggingFaceDownloaderConfig struct {
CacheDir string `yaml:"cacheDir"`
}
HuggingFaceDownloaderConfig is the Hugging Face downloader configuration.
type ObjectStoreConfig ¶
type ObjectStoreConfig struct {
S3 S3Config `yaml:"s3"`
}
ObjectStoreConfig is the object store configuration.
func (*ObjectStoreConfig) Validate ¶
func (c *ObjectStoreConfig) Validate() error
Validate validates the object store configuration.
type S3Config ¶
type S3Config struct {
EndpointURL string `yaml:"endpointUrl"`
Region string `yaml:"region"`
Bucket string `yaml:"bucket"`
PathPrefix string `yaml:"pathPrefix"`
// BaseModelPathPrefix is the path prefix for the base models in the object store. A model is stored under
// <ObjectStore.S3.PathPrefix>/<BaseModelPathPrefix>.
BaseModelPathPrefix string `yaml:"baseModelPathPrefix"`
}
S3Config is the S3 configuration.
Click to show internal directories.
Click to hide internal directories.