mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-06 10:38:50 +01:00
🤖 feat: Custom Endpoint Agents (experimental) (#4627)
* wip: first pass, custom endpoint agents * chore: imports * chore: consolidate exports * fix: imports * feat: convert message.content array to strings for legacy format handling (deepseek/groq) * refactor: normalize ollama endpoint name * refactor: update mocking in isDomainAllowed.spec.js * refactor: update deepseekModels in tokens.js and tokens.spec.js
This commit is contained in:
parent
9437e95315
commit
2e519f9b57
23 changed files with 230 additions and 73 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "librechat-data-provider",
|
||||
"version": "0.7.51",
|
||||
"version": "0.7.52",
|
||||
"description": "data services for librechat apps",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.es.js",
|
||||
|
|
|
|||
|
|
@ -184,6 +184,8 @@ export type Agent = {
|
|||
id: string;
|
||||
name: string | null;
|
||||
author?: string | null;
|
||||
/** The original custom endpoint name, lowercased */
|
||||
endpoint?: string | null;
|
||||
authorName?: string | null;
|
||||
description: string | null;
|
||||
created_at: number;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue