mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-17 21:34:37 +02: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
|
|
@ -18,6 +18,7 @@ const StructuredACS = require('./structured/AzureAISearch');
|
|||
const CodeSherpaTools = require('./structured/CodeSherpaTools');
|
||||
const StructuredWolfram = require('./structured/Wolfram');
|
||||
const TavilySearchResults = require('./structured/TavilySearchResults');
|
||||
const TraversaalSearch = require('./structured/TraversaalSearch');
|
||||
|
||||
module.exports = {
|
||||
availableTools,
|
||||
|
|
@ -39,4 +40,5 @@ module.exports = {
|
|||
CodeSherpaTools,
|
||||
StructuredWolfram,
|
||||
TavilySearchResults,
|
||||
TraversaalSearch,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue