Merge branch 'main' into feature/cohere-base-url

This commit is contained in:
Jón Levy 2026-02-05 16:21:22 +00:00 committed by GitHub
commit d4edaafcf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
83 changed files with 5324 additions and 634 deletions

View file

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

View file

@ -1702,9 +1702,9 @@ export enum TTSProviders {
/** Enum for app-wide constants */
export enum Constants {
/** Key for the app's version. */
VERSION = 'v0.8.2-rc3',
VERSION = 'v0.8.2',
/** Key for the Custom Config's version (librechat.yaml). */
CONFIG_VERSION = '1.3.1',
CONFIG_VERSION = '1.3.3',
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
NO_PARENT = '00000000-0000-0000-0000-000000000000',
/** Standard value to use whatever the submission prelim. `responseMessageId` is */

View file

@ -217,7 +217,7 @@ export type Agent = {
description: string | null;
created_at: number;
avatar: AgentAvatar | null;
instructions: string | null;
instructions?: string | null;
additional_instructions?: string | null;
tools?: string[];
projectIds?: string[];