From f41bb1470780a9af5b29ce3ebf55d4dee3b8d787 Mon Sep 17 00:00:00 2001 From: MrCsabaToth Date: Sat, 23 Nov 2024 21:41:38 -0800 Subject: [PATCH] Renaming the class of 7timer weather tool after renaming the file #41 --- lib/ai/tools/seven_timer_weather_tool.dart | 2 +- lib/ai/tools/tools_mixin.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ai/tools/seven_timer_weather_tool.dart b/lib/ai/tools/seven_timer_weather_tool.dart index b4e75fd..03b389c 100644 --- a/lib/ai/tools/seven_timer_weather_tool.dart +++ b/lib/ai/tools/seven_timer_weather_tool.dart @@ -4,7 +4,7 @@ import 'package:inspector_gadget/ai/tools/function_tool.dart'; import 'package:inspector_gadget/ai/tools/geo_request.dart'; import 'package:inspector_gadget/preferences/service/preferences.dart'; -class WeatherTool implements FunctionTool { +class SevenTimerWeatherTool implements FunctionTool { @override bool isAvailable(PreferencesService preferences) { return true; diff --git a/lib/ai/tools/tools_mixin.dart b/lib/ai/tools/tools_mixin.dart index e962552..f73a096 100644 --- a/lib/ai/tools/tools_mixin.dart +++ b/lib/ai/tools/tools_mixin.dart @@ -21,7 +21,7 @@ mixin ToolsMixin { } functionTools.addAll([ - WeatherTool(), + SevenTimerWeatherTool(), SunTimeTool(), // WebSearchTool(), WebResearchTool(),