Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Ollama OllamaConfig `yaml:"ollama"` ObjectStore ObjectStoreConfig `yaml:"objectStore"` Debug DebugConfig `yaml:"debug"` InferenceManagerServerWorkerServiceAddr string `yaml:"inferenceManagerServerWorkerServiceAddr"` ModelManagerServerWorkerServiceAddr string `yaml:"modelManagerServerWorkerServiceAddr"` Worker WorkerConfig `yaml:"worker"` }
Config is the configuration.
type DebugConfig ¶ added in v0.2.0
type DebugConfig struct { // Standalone is true if the service is running in standalone mode (except the // dependency to inference-manager-server). 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 OllamaConfig ¶ added in v0.180.0
type OllamaConfig struct { // Port is the port to listen on. Port int `yaml:"port"` // KeepAlive is the keep-alive duration for Ollama. // This controls how long Ollama keeps models in GPU memory. KeepAlive time.Duration `yaml:"keepAlive"` }
OllamaConfig is the Ollama 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.
type WorkerConfig ¶ added in v0.103.0
type WorkerConfig struct {
TLS WorkerTLSConfig `yaml:"tls"`
}
WorkerConfig is the worker configuration.
type WorkerTLSConfig ¶ added in v0.103.0
type WorkerTLSConfig struct {
Enable bool `yaml:"enable"`
}
WorkerTLSConfig is the worker TLS configuration.
Click to show internal directories.
Click to hide internal directories.