Skip to content

Commit 46f0342

Browse files
authored
✨ v0.7.7-rc1 (#5801)
1 parent 4de9619 commit 46f0342

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.6
1+
# v0.7.7-rc1
22

33
# Base node image
44
FROM node:20-alpine AS node

Dockerfile.multi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile.multi
2-
# v0.7.6
2+
# v0.7.7-rc1
33

44
# Base for all builds
55
FROM node:20-alpine AS base-min

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/backend",
3-
"version": "v0.7.6",
3+
"version": "v0.7.7-rc1",
44
"description": "",
55
"scripts": {
66
"start": "echo 'please run this from the root directory'",

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/frontend",
3-
"version": "v0.7.6",
3+
"version": "v0.7.7-rc1",
44
"description": "",
55
"type": "module",
66
"scripts": {

e2e/jestSetup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// v0.7.6
1+
// v0.7.7-rc1
22
// See .env.test.example for an example of the '.env.test' file.
33
require('dotenv').config({ path: './e2e/.env.test' });

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- v0.7.6 -->
1+
<!-- v0.7.7-rc1 -->
22
<!DOCTYPE html>
33
<html>
44
<head>

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LibreChat",
3-
"version": "v0.7.6",
3+
"version": "v0.7.7-rc1",
44
"description": "",
55
"workspaces": [
66
"api",

packages/data-provider/src/config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* eslint-disable max-len */
1+
22
import { z } from 'zod';
33
import type { ZodError } from 'zod';
44
import type { TModelsConfig } from './types';
@@ -43,9 +43,8 @@ export const fileSourceSchema = z.nativeEnum(FileSources);
4343
type SchemaShape<T> = T extends z.ZodObject<infer U> ? U : never;
4444

4545
// Helper type to determine the default value or undefined based on whether the field has a default
46-
type DefaultValue<T> = T extends z.ZodDefault<z.ZodTypeAny>
47-
? ReturnType<T['_def']['defaultValue']>
48-
: undefined;
46+
type DefaultValue<T> =
47+
T extends z.ZodDefault<z.ZodTypeAny> ? ReturnType<T['_def']['defaultValue']> : undefined;
4948

5049
// Extract default values or undefined from the schema shape
5150
type ExtractDefaults<T> = {
@@ -1067,6 +1066,7 @@ export enum ImageDetailCost {
10671066
/**
10681067
* Additional Cost added to High Resolution Total Cost
10691068
*/
1069+
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
10701070
ADDITIONAL = 85,
10711071
}
10721072

@@ -1137,7 +1137,7 @@ export enum TTSProviders {
11371137
/** Enum for app-wide constants */
11381138
export enum Constants {
11391139
/** Key for the app's version. */
1140-
VERSION = 'v0.7.6',
1140+
VERSION = 'v0.7.7-rc1',
11411141
/** Key for the Custom Config's version (librechat.yaml). */
11421142
CONFIG_VERSION = '1.2.1',
11431143
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */

0 commit comments

Comments
 (0)