mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* refactor: Agent CodeFiles, abortUpload WIP * feat: code environment file upload * refactor: useLazyEffect * refactor: - Add `watch` from `useFormContext` to check if code execution is enabled - Disable file upload button if `agent_id` is not selected or code execution is disabled * WIP: primeCodeFiles; refactor: rename sessionId to session_id for uniformity * Refactor: Rename session_id to sessionId for uniformity in AuthService.js * chore: bump @librechat/agents to version 1.7.1 * WIP: prime code files * refactor: Update code env file upload method to use read stream * feat: reupload code env file if no longer active * refactor: isAssistantTool -> isEntityTool + address type issues * feat: execute code tool hook * refactor: Rename isPluginAuthenticated to checkPluginAuth in PluginController.js * refactor: Update PluginController.js to use AuthType constant for comparison * feat: verify tool authentication (execute_code) * feat: enter librechat_code_api_key * refactor: Remove unused imports in BookmarkForm.tsx * feat: authenticate code tool * refactor: Update Action.tsx to conditionally render the key and revoke key buttons * refactor(Code/Action): prevent uncheck-able 'Run Code' capability when key is revoked * refactor(Code/Action): Update Action.tsx to conditionally render the key and revoke key buttons * fix: agent file upload edge cases * chore: bump @librechat/agents * fix: custom endpoint providerValue icon * feat: ollama meta modal token values + context * feat: ollama agents * refactor: Update token models for Ollama models * chore: Comment out CodeForm * refactor: Update token models for Ollama and Meta models
22 lines
664 B
JavaScript
22 lines
664 B
JavaScript
const express = require('express');
|
|
const { getAvailableTools } = require('~/server/controllers/PluginController');
|
|
const { verifyToolAuth } = require('~/server/controllers/tools');
|
|
|
|
const router = express.Router();
|
|
|
|
/**
|
|
* Get a list of available tools for agents.
|
|
* @route GET /agents/tools
|
|
* @returns {TPlugin[]} 200 - application/json
|
|
*/
|
|
router.get('/', getAvailableTools);
|
|
|
|
/**
|
|
* Verify authentication for a specific tool
|
|
* @route GET /agents/tools/:toolId/auth
|
|
* @param {string} toolId - The ID of the tool to verify
|
|
* @returns {{ authenticated?: boolean; message?: string }}
|
|
*/
|
|
router.get('/:toolId/auth', verifyToolAuth);
|
|
|
|
module.exports = router;
|