🔎 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:
Danny Avila 2024-03-06 10:25:38 -05:00 committed by GitHub
parent 14dd3dd240
commit 959d6153f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 107 additions and 1 deletions

View file

@ -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,
};