mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
🔎 feat: Traversaal Search Tool (#1991)
* wip: Traversaal Search Tool * fix(traversaal): properly handle tool error, show error to LLM, log * feat(traversaal): finish implementation of structured tool * chore: change traversaal order
This commit is contained in:
parent
14dd3dd240
commit
959d6153f6
4 changed files with 107 additions and 1 deletions
|
|
@ -20,6 +20,7 @@ const {
|
|||
StructuredSD,
|
||||
StructuredACS,
|
||||
CodeSherpaTools,
|
||||
TraversaalSearch,
|
||||
StructuredWolfram,
|
||||
TavilySearchResults,
|
||||
} = require('../');
|
||||
|
|
@ -165,6 +166,7 @@ const loadTools = async ({
|
|||
'stable-diffusion': functions ? StructuredSD : StableDiffusionAPI,
|
||||
'azure-ai-search': functions ? StructuredACS : AzureAISearch,
|
||||
CodeBrew: CodeBrew,
|
||||
traversaal_search: TraversaalSearch,
|
||||
};
|
||||
|
||||
const openAIApiKey = await getOpenAIKey(options, user);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue