mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-14 14:38:51 +01:00
* 🗑️ refactor: Remove YouTube API integration and related configurations as it's broken and should be integrated via MCP instead. Currently there seems not to be a single MCP out there with working get_transcript methods for months. API seems to have changed and there are no maintainers on these projects. We will work out something soon an MCP solution - Deleted YouTube API key and related configurations from .env.example. - Removed YouTube tools and their references from the API client, including the manifest and structured files. - Updated package.json to remove YouTube-related dependencies. - Cleaned up toolkit exports by removing YouTube toolkit references. * chore: revert package removal to properly remove packages * 🗑️ refactor: Remove YouTube API and related dependencies due to integration issues --------- Co-authored-by: Danny Avila <danny@librechat.ai>
30 lines
1,004 B
JavaScript
30 lines
1,004 B
JavaScript
const manifest = require('./manifest');
|
|
|
|
// Structured Tools
|
|
const DALLE3 = require('./structured/DALLE3');
|
|
const FluxAPI = require('./structured/FluxAPI');
|
|
const OpenWeather = require('./structured/OpenWeather');
|
|
const StructuredWolfram = require('./structured/Wolfram');
|
|
const StructuredACS = require('./structured/AzureAISearch');
|
|
const StructuredSD = require('./structured/StableDiffusion');
|
|
const GoogleSearchAPI = require('./structured/GoogleSearch');
|
|
const TraversaalSearch = require('./structured/TraversaalSearch');
|
|
const createOpenAIImageTools = require('./structured/OpenAIImageTools');
|
|
const TavilySearchResults = require('./structured/TavilySearchResults');
|
|
const createGeminiImageTool = require('./structured/GeminiImageGen');
|
|
|
|
module.exports = {
|
|
...manifest,
|
|
// Structured Tools
|
|
DALLE3,
|
|
FluxAPI,
|
|
OpenWeather,
|
|
StructuredSD,
|
|
StructuredACS,
|
|
GoogleSearchAPI,
|
|
TraversaalSearch,
|
|
StructuredWolfram,
|
|
TavilySearchResults,
|
|
createOpenAIImageTools,
|
|
createGeminiImageTool,
|
|
};
|