ADAPT-Chase's picture
Add files using upload-large-folder tool
59bb539 verified
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
package config
import (
"fmt"
"github.com/weaviate/weaviate/entities/moduletools"
)
const (
MethodMean = "mean"
MethodDefault = MethodMean
)
const (
calculationMethodField = "method"
referencePropertiesField = "referenceProperties"
)
func Default() map[string]interface{} {
return map[string]interface{}{
calculationMethodField: MethodDefault,
}
}
type Config struct {
class moduletools.ClassConfig
}
func New(cfg moduletools.ClassConfig) *Config {
return &Config{class: cfg}
}
func (c *Config) ReferenceProperties() map[string]struct{} {
refProps := map[string]struct{}{}
props := c.class.Class()
iRefProps := props[referencePropertiesField].([]interface{})
for _, iProp := range iRefProps {
refProps[iProp.(string)] = struct{}{}
}
return refProps
}
func (c *Config) CalculationMethod() (string, error) {
props := c.class.Class()
calcMethod, ok := props[calculationMethodField].(string)
if !ok {
return "", fmt.Errorf("could not parse calculation methode. Expected a string, got: %v", props[calculationMethodField])
}
return calcMethod, nil
}