BotSharp/src/Plugins/BotSharp.Plugin.WebDriver/Using.cs
2024-08-04 17:48:52 -05:00

26 lines
1.1 KiB
C#

global using System;
global using System.Collections.Generic;
global using System.Text;
global using System.Threading.Tasks;
global using System.Text.Json;
global using System.Linq;
global using System.Text.RegularExpressions;
global using Microsoft.Playwright;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Logging;
global using BotSharp.Abstraction.Browsing.Enums;
global using BotSharp.Abstraction.Conversations;
global using BotSharp.Abstraction.Plugins;
global using BotSharp.Abstraction.Conversations.Models;
global using BotSharp.Abstraction.Functions;
global using BotSharp.Abstraction.Agents.Models;
global using BotSharp.Abstraction.Templating;
global using BotSharp.Abstraction.Agents;
global using BotSharp.Abstraction.Utilities;
global using BotSharp.Plugin.WebDriver.Models;
global using BotSharp.Plugin.WebDriver.Services;
global using BotSharp.Plugin.WebDriver.LlmContexts;
global using BotSharp.Plugin.WebDriver.Drivers;
global using BotSharp.Abstraction.Browsing.Models;
global using BotSharp.Abstraction.Browsing;