diff --git a/Dockerfile b/Dockerfile index 41243119e1d..46cabe6dff0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# v0.7.6 +# v0.7.7-rc1 # Base node image FROM node:20-alpine AS node diff --git a/Dockerfile.multi b/Dockerfile.multi index c5450026d3a..570fbecf317 100644 --- a/Dockerfile.multi +++ b/Dockerfile.multi @@ -1,5 +1,5 @@ # Dockerfile.multi -# v0.7.6 +# v0.7.7-rc1 # Base for all builds FROM node:20-alpine AS base-min diff --git a/api/package.json b/api/package.json index 82002287604..8d5a997e6e4 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/backend", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "description": "", "scripts": { "start": "echo 'please run this from the root directory'", diff --git a/client/package.json b/client/package.json index c0ff976e6be..993cf300714 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/frontend", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "description": "", "type": "module", "scripts": { diff --git a/e2e/jestSetup.js b/e2e/jestSetup.js index 2e87cca32e7..38368158a96 100644 --- a/e2e/jestSetup.js +++ b/e2e/jestSetup.js @@ -1,3 +1,3 @@ -// v0.7.6 +// v0.7.7-rc1 // See .env.test.example for an example of the '.env.test' file. require('dotenv').config({ path: './e2e/.env.test' }); diff --git a/index.html b/index.html index 29b32c6f3a3..d274095b548 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - +
diff --git a/package-lock.json b/package-lock.json index 7f79e4c8b8e..aca6d8f7518 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "LibreChat", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "LibreChat", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "license": "ISC", "workspaces": [ "api", @@ -45,7 +45,7 @@ }, "api": { "name": "@librechat/backend", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "license": "ISC", "dependencies": { "@anthropic-ai/sdk": "^0.32.1", @@ -1034,7 +1034,7 @@ }, "client": { "name": "@librechat/frontend", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "license": "ISC", "dependencies": { "@ariakit/react": "^0.4.11", diff --git a/package.json b/package.json index 07ceeeb4f0e..9d063a60f37 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LibreChat", - "version": "v0.7.6", + "version": "v0.7.7-rc1", "description": "", "workspaces": [ "api", diff --git a/packages/data-provider/src/config.ts b/packages/data-provider/src/config.ts index 008b009112e..e6a2497a61a 100644 --- a/packages/data-provider/src/config.ts +++ b/packages/data-provider/src/config.ts @@ -1,4 +1,4 @@ -/* eslint-disable max-len */ + import { z } from 'zod'; import type { ZodError } from 'zod'; import type { TModelsConfig } from './types'; @@ -43,9 +43,8 @@ export const fileSourceSchema = z.nativeEnum(FileSources); type SchemaShape