Spaces:
Running
Running
File size: 6,335 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package config
import (
"encoding/json"
"fmt"
"strings"
"github.com/pkg/errors"
"github.com/weaviate/weaviate/entities/models"
"github.com/weaviate/weaviate/entities/moduletools"
)
const (
apiEndpointProperty = "apiEndpoint"
projectIDProperty = "projectId"
endpointIDProperty = "endpointId"
modelIDProperty = "modelId"
temperatureProperty = "temperature"
tokenLimitProperty = "tokenLimit"
topPProperty = "topP"
topKProperty = "topK"
)
var (
DefaultPaLMApiEndpoint = "us-central1-aiplatform.googleapis.com"
DefaultPaLMModel = "chat-bison"
DefaultPaLMTemperature = 0.2
DefaultTokenLimit = 256
DefaultPaLMTopP = 0.95
DefaultPaLMTopK = 40
DefaulGenerativeAIApiEndpoint = "generativelanguage.googleapis.com"
DefaulGenerativeAIModelID = "chat-bison-001"
)
var supportedGenerativeAIModels = []string{
DefaulGenerativeAIModelID,
"gemini-pro",
}
type ClassSettings interface {
Validate(class *models.Class) error
// Module settings
ApiEndpoint() string
ProjectID() string
EndpointID() string
ModelID() string
// parameters
// 0.0 - 1.0
Temperature() float64
// 1 - 1024
TokenLimit() int
// 1 - 40
TopK() int
// 0.0 - 1.0
TopP() float64
}
type classSettings struct {
cfg moduletools.ClassConfig
}
func NewClassSettings(cfg moduletools.ClassConfig) ClassSettings {
return &classSettings{cfg: cfg}
}
func (ic *classSettings) Validate(class *models.Class) error {
if ic.cfg == nil {
// we would receive a nil-config on cross-class requests, such as Explore{}
return errors.New("empty config")
}
var errorMessages []string
apiEndpoint := ic.ApiEndpoint()
projectID := ic.ProjectID()
if apiEndpoint != DefaulGenerativeAIApiEndpoint && projectID == "" {
errorMessages = append(errorMessages, fmt.Sprintf("%s cannot be empty", projectIDProperty))
}
temperature := ic.Temperature()
if temperature < 0 || temperature > 1 {
errorMessages = append(errorMessages, fmt.Sprintf("%s has to be float value between 0 and 1", temperatureProperty))
}
tokenLimit := ic.TokenLimit()
if tokenLimit < 1 || tokenLimit > 1024 {
errorMessages = append(errorMessages, fmt.Sprintf("%s has to be an integer value between 1 and 1024", tokenLimitProperty))
}
topK := ic.TopK()
if topK < 1 || topK > 40 {
errorMessages = append(errorMessages, fmt.Sprintf("%s has to be an integer value between 1 and 40", topKProperty))
}
topP := ic.TopP()
if topP < 0 || topP > 1 {
errorMessages = append(errorMessages, fmt.Sprintf("%s has to be float value between 0 and 1", topPProperty))
}
// Google MakerSuite
model := ic.ModelID()
if apiEndpoint == DefaulGenerativeAIApiEndpoint && !contains[string](supportedGenerativeAIModels, model) {
errorMessages = append(errorMessages, fmt.Sprintf("%s is not supported available models are: %+v", model, supportedGenerativeAIModels))
}
if len(errorMessages) > 0 {
return fmt.Errorf("%s", strings.Join(errorMessages, ", "))
}
return nil
}
func (ic *classSettings) getStringProperty(name, defaultValue string) string {
if ic.cfg == nil {
// we would receive a nil-config on cross-class requests, such as Explore{}
return defaultValue
}
value, ok := ic.cfg.ClassByModuleName("generative-palm")[name]
if ok {
asString, ok := value.(string)
if ok {
return asString
}
}
return defaultValue
}
func (ic *classSettings) getFloatProperty(name string, defaultValue float64) float64 {
if ic.cfg == nil {
// we would receive a nil-config on cross-class requests, such as Explore{}
return defaultValue
}
val, ok := ic.cfg.ClassByModuleName("generative-palm")[name]
if ok {
asFloat, ok := val.(float64)
if ok {
return asFloat
}
asNumber, ok := val.(json.Number)
if ok {
asFloat, _ := asNumber.Float64()
return asFloat
}
asInt, ok := val.(int)
if ok {
asFloat := float64(asInt)
return asFloat
}
}
return defaultValue
}
func (ic *classSettings) getIntProperty(name string, defaultValue int) int {
if ic.cfg == nil {
// we would receive a nil-config on cross-class requests, such as Explore{}
return defaultValue
}
val, ok := ic.cfg.ClassByModuleName("generative-palm")[name]
if ok {
asFloat, ok := val.(float64)
if ok {
return int(asFloat)
}
asNumber, ok := val.(json.Number)
if ok {
asInt64, _ := asNumber.Int64()
return int(asInt64)
}
asInt, ok := val.(int)
if ok {
return asInt
}
}
return defaultValue
}
func (ic *classSettings) getDefaultModel(apiEndpoint string) string {
if apiEndpoint == DefaulGenerativeAIApiEndpoint {
return DefaulGenerativeAIModelID
}
return DefaultPaLMModel
}
// PaLM params
func (ic *classSettings) ApiEndpoint() string {
return ic.getStringProperty(apiEndpointProperty, DefaultPaLMApiEndpoint)
}
func (ic *classSettings) ProjectID() string {
return ic.getStringProperty(projectIDProperty, "")
}
func (ic *classSettings) EndpointID() string {
return ic.getStringProperty(endpointIDProperty, "")
}
func (ic *classSettings) ModelID() string {
return ic.getStringProperty(modelIDProperty, ic.getDefaultModel(ic.ApiEndpoint()))
}
// parameters
// 0.0 - 1.0
func (ic *classSettings) Temperature() float64 {
return ic.getFloatProperty(temperatureProperty, DefaultPaLMTemperature)
}
// 1 - 1024
func (ic *classSettings) TokenLimit() int {
return ic.getIntProperty(tokenLimitProperty, DefaultTokenLimit)
}
// 1 - 40
func (ic *classSettings) TopK() int {
return ic.getIntProperty(topKProperty, DefaultPaLMTopK)
}
// 0.0 - 1.0
func (ic *classSettings) TopP() float64 {
return ic.getFloatProperty(topPProperty, DefaultPaLMTopP)
}
func contains[T comparable](s []T, e T) bool {
for _, v := range s {
if v == e {
return true
}
}
return false
}
|