mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 07:32:14 +00:00
Moved the Tool implementations to a dedicated folder
This commit is contained in:
parent
582bd27e48
commit
4d3e308f2e
@ -1,8 +1,7 @@
|
||||
using System.Text.Json;
|
||||
|
||||
using AIStudio.Tools.PluginSystem;
|
||||
|
||||
namespace AIStudio.Tools.ToolCallingSystem;
|
||||
namespace AIStudio.Tools.ToolCallingSystem.ToolCallingImplementations;
|
||||
|
||||
public sealed class GetCurrentWeatherTool : IToolImplementation
|
||||
{
|
||||
|
||||
@ -1,14 +1,9 @@
|
||||
using System.Linq;
|
||||
using System.Net.Http;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Nodes;
|
||||
|
||||
using AIStudio.Tools;
|
||||
using AIStudio.Tools.PluginSystem;
|
||||
|
||||
using HtmlAgilityPack;
|
||||
|
||||
namespace AIStudio.Tools.ToolCallingSystem;
|
||||
namespace AIStudio.Tools.ToolCallingSystem.ToolCallingImplementations;
|
||||
|
||||
public sealed class ReadWebPageTool(HTMLParser htmlParser) : IToolImplementation
|
||||
{
|
||||
|
||||
@ -2,10 +2,9 @@ using System.Net;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Nodes;
|
||||
|
||||
using AIStudio.Tools.PluginSystem;
|
||||
|
||||
namespace AIStudio.Tools.ToolCallingSystem;
|
||||
namespace AIStudio.Tools.ToolCallingSystem.ToolCallingImplementations;
|
||||
|
||||
public sealed class SearXNGWebSearchTool : IToolImplementation
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user