We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cedf91d commit 51fb8c1Copy full SHA for 51fb8c1
pkg/config/config.go
@@ -91,7 +91,7 @@ func (c *Config) LoadConfig() {
91
92
c.PDEnabled = env.GetEnvString(pdEnabledEnvKey, "false", c.logger) == "true"
93
c.PDThreshold = env.GetEnvInt(pdPromptLenThresholdEnvKey, pdPromptLenThresholdDefault, c.logger)
94
- c.PrefixBlockSize = env.GetEnvInt(prefixScorerBlockSizeEnvKey, 256, c.logger)
+ c.PrefixBlockSize = env.GetEnvInt(prefixScorerBlockSizeEnvKey, prefixScorerBlockSizeDefault, c.logger)
95
}
96
97
func (c *Config) loadPluginInfo(plugins map[string]int, prefill bool, pluginNames ...string) {
0 commit comments