🎚️ fix: Google top_k Slider Step to Integers (#4537)

This commit is contained in:
Danny Avila 2024-10-24 09:24:38 -04:00 committed by GitHub
parent 2996058fa2
commit e0e393b8a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View file

@ -36522,7 +36522,7 @@
},
"packages/data-provider": {
"name": "librechat-data-provider",
"version": "0.7.429",
"version": "0.7.430",
"license": "ISC",
"dependencies": {
"@types/js-yaml": "^4.0.9",

View file

@ -1,6 +1,6 @@
{
"name": "librechat-data-provider",
"version": "0.7.429",
"version": "0.7.430",
"description": "data services for librechat apps",
"main": "dist/index.js",
"module": "dist/index.es.js",

View file

@ -232,7 +232,7 @@ export const googleSettings = {
topK: {
min: 1,
max: 40,
step: 0.01,
step: 1,
default: 40,
},
};