🌤️ feat: Add OpenWeather Tool for Weather Data Retrieval (#5246)

*  feat: Add OpenWeather Tool for Weather Data Retrieval 🌤️

* chore: linting

* chore: move test files

* fix: tool icon, allow user-provided keys, conform to app key assignment pattern

* chore: linting not included in #5212

---------

Co-authored-by: Jonathan Addington <jonathan.addington@jmaddington.com>
This commit is contained in:
Danny Avila 2025-01-10 08:54:08 -05:00 committed by GitHub
parent ea1a5c8a30
commit 0855677a36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 927 additions and 6 deletions

View file

@ -8,6 +8,7 @@ const StructuredSD = require('./structured/StableDiffusion');
const GoogleSearchAPI = require('./structured/GoogleSearch');
const TraversaalSearch = require('./structured/TraversaalSearch');
const TavilySearchResults = require('./structured/TavilySearchResults');
const OpenWeather = require('./structured/OpenWeather');
module.exports = {
availableTools,
@ -19,4 +20,5 @@ module.exports = {
TraversaalSearch,
StructuredWolfram,
TavilySearchResults,
OpenWeather,
};