config

package
v0.36.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	InternalGRPCPort int `yaml:"internalGrpcPort"`
	OllamaPort       int `yaml:"ollamaPort"`

	ModelSyncInterval time.Duration `yaml:"modelSyncInterval"`

	ObjectStore ObjectStoreConfig `yaml:"objectStore"`

	Debug DebugConfig `yaml:"debug"`

	ModelManagerInternalServerAddr string `yaml:"modelManagerInternalServerAddr"`
}

Config is the configuration.

func Parse

func Parse(path string) (Config, error)

Parse parses the configuration file at the given path, returning a new Config struct.

func (*Config) Validate

func (c *Config) Validate() error

Validate validates the configuration.

type DebugConfig added in v0.2.0

type DebugConfig struct {
	Standalone bool `yaml:"standalone"`

	// BaseModels is a list of base models to pull. The model names follow HuggingFace's.
	// This is only used in standalone mode.
	BaseModels []string `yaml:"baseModels"`
}

DebugConfig is the debug configuration.

type ObjectStoreConfig added in v0.2.0

type ObjectStoreConfig struct {
	S3 S3Config `yaml:"s3"`
}

ObjectStoreConfig is the object store configuration.

func (*ObjectStoreConfig) Validate added in v0.2.0

func (c *ObjectStoreConfig) Validate() error

Validate validates the object store configuration.

type S3Config added in v0.2.0

type S3Config struct {
	EndpointURL string `yaml:"endpointUrl"`
	Region      string `yaml:"region"`
	Bucket      string `yaml:"bucket"`
}

S3Config is the S3 configuration.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL