mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* fix: Prevent parsing 'undefined' string in useLocalStorage initialization * feat: first pass, code interpreter badge * feat: Integrate API key authentication and default checked value in Code Interpreter Badge * refactor: Rename showMCPServers to showEphemeralBadges and update related components, memoize values in useChatBadges * refactor: Enhance AttachFileChat to support ephemeral agents in file attachment logic * fix: Add baseURL configuration option to legacy function call * refactor: Update dependency array in useDragHelpers to include handleFiles * refactor: Update isEphemeralAgent function to accept optional endpoint parameter * refactor: Update file handling to support ephemeral agents in AttachFileMenu and useDragHelpers * fix: improve compatibility issues with OpenAI usage field handling in createRun function * refactor: usage field compatibility * fix: ensure mcp servers are no longer "selected" if mcp servers are now unavailable
94 lines
2.9 KiB
JavaScript
94 lines
2.9 KiB
JavaScript
const { Run, Providers } = require('@librechat/agents');
|
|
const { providerEndpointMap, KnownEndpoints } = require('librechat-data-provider');
|
|
|
|
/**
|
|
* @typedef {import('@librechat/agents').t} t
|
|
* @typedef {import('@librechat/agents').StandardGraphConfig} StandardGraphConfig
|
|
* @typedef {import('@librechat/agents').StreamEventData} StreamEventData
|
|
* @typedef {import('@librechat/agents').EventHandler} EventHandler
|
|
* @typedef {import('@librechat/agents').GraphEvents} GraphEvents
|
|
* @typedef {import('@librechat/agents').LLMConfig} LLMConfig
|
|
* @typedef {import('@librechat/agents').IState} IState
|
|
*/
|
|
|
|
const customProviders = new Set([
|
|
Providers.XAI,
|
|
Providers.OLLAMA,
|
|
Providers.DEEPSEEK,
|
|
Providers.OPENROUTER,
|
|
]);
|
|
|
|
/**
|
|
* Creates a new Run instance with custom handlers and configuration.
|
|
*
|
|
* @param {Object} options - The options for creating the Run instance.
|
|
* @param {ServerRequest} [options.req] - The server request.
|
|
* @param {string | undefined} [options.runId] - Optional run ID; otherwise, a new run ID will be generated.
|
|
* @param {Agent} options.agent - The agent for this run.
|
|
* @param {AbortSignal} options.signal - The signal for this run.
|
|
* @param {Record<GraphEvents, EventHandler> | undefined} [options.customHandlers] - Custom event handlers.
|
|
* @param {boolean} [options.streaming=true] - Whether to use streaming.
|
|
* @param {boolean} [options.streamUsage=true] - Whether to stream usage information.
|
|
* @returns {Promise<Run<IState>>} A promise that resolves to a new Run instance.
|
|
*/
|
|
async function createRun({
|
|
runId,
|
|
agent,
|
|
signal,
|
|
customHandlers,
|
|
streaming = true,
|
|
streamUsage = true,
|
|
}) {
|
|
const provider = providerEndpointMap[agent.provider] ?? agent.provider;
|
|
/** @type {LLMConfig} */
|
|
const llmConfig = Object.assign(
|
|
{
|
|
provider,
|
|
streaming,
|
|
streamUsage,
|
|
},
|
|
agent.model_parameters,
|
|
);
|
|
|
|
/** Resolves issues with new OpenAI usage field */
|
|
if (
|
|
customProviders.has(agent.provider) ||
|
|
(agent.provider === Providers.OPENAI && agent.endpoint !== agent.provider)
|
|
) {
|
|
llmConfig.streamUsage = false;
|
|
llmConfig.usage = true;
|
|
}
|
|
|
|
/** @type {'reasoning_content' | 'reasoning'} */
|
|
let reasoningKey;
|
|
if (
|
|
llmConfig.configuration?.baseURL?.includes(KnownEndpoints.openrouter) ||
|
|
(agent.endpoint && agent.endpoint.toLowerCase().includes(KnownEndpoints.openrouter))
|
|
) {
|
|
reasoningKey = 'reasoning';
|
|
}
|
|
|
|
/** @type {StandardGraphConfig} */
|
|
const graphConfig = {
|
|
signal,
|
|
llmConfig,
|
|
reasoningKey,
|
|
tools: agent.tools,
|
|
instructions: agent.instructions,
|
|
additional_instructions: agent.additional_instructions,
|
|
// toolEnd: agent.end_after_tools,
|
|
};
|
|
|
|
// TEMPORARY FOR TESTING
|
|
if (agent.provider === Providers.ANTHROPIC || agent.provider === Providers.BEDROCK) {
|
|
graphConfig.streamBuffer = 2000;
|
|
}
|
|
|
|
return Run.create({
|
|
runId,
|
|
graphConfig,
|
|
customHandlers,
|
|
});
|
|
}
|
|
|
|
module.exports = { createRun };
|