mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* chore: remove auto-focus for now * refactor: move react-hook-form Controller Logic to AgentSelect from AgentPanel * fix: a11y focus issue with AgentSelect by never replacing it in its component tree * fix: maintain ComboBox focus and force re-render on agent ID change in AgentPanel * chore: `gemini-2.0-flash-lite-preview-02-05` (deprecated) * refactor: extract cache control logic and headers configuration to helper functions in AnthropicClient * feat: anthropic agents prompt caching * chore: bump @librechat/agents and related dependencies * fix: typo
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
/**
|
|
* Anthropic API: Adds cache control to the appropriate user messages in the payload.
|
|
* @param {Array<AnthropicMessage | BaseMessage>} messages - The array of message objects.
|
|
* @returns {Array<AnthropicMessage | BaseMessage>} - The updated array of message objects with cache control added.
|
|
*/
|
|
function addCacheControl(messages) {
|
|
if (!Array.isArray(messages) || messages.length < 2) {
|
|
return messages;
|
|
}
|
|
|
|
const updatedMessages = [...messages];
|
|
let userMessagesModified = 0;
|
|
|
|
for (let i = updatedMessages.length - 1; i >= 0 && userMessagesModified < 2; i--) {
|
|
const message = updatedMessages[i];
|
|
if (message.getType != null && message.getType() !== 'human') {
|
|
continue;
|
|
} else if (message.getType == null && message.role !== 'user') {
|
|
continue;
|
|
}
|
|
|
|
if (typeof message.content === 'string') {
|
|
message.content = [
|
|
{
|
|
type: 'text',
|
|
text: message.content,
|
|
cache_control: { type: 'ephemeral' },
|
|
},
|
|
];
|
|
userMessagesModified++;
|
|
} else if (Array.isArray(message.content)) {
|
|
for (let j = message.content.length - 1; j >= 0; j--) {
|
|
if (message.content[j].type === 'text') {
|
|
message.content[j].cache_control = { type: 'ephemeral' };
|
|
userMessagesModified++;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return updatedMessages;
|
|
}
|
|
|
|
module.exports = addCacheControl;
|