BotSharp/src/Plugins/BotSharp.Plugin.EmailHandler/Using.cs

32 lines
1.4 KiB
C#
Raw Normal View History

global using System;
global using System.Collections.Generic;
global using System.Text;
2024-07-17 18:31:09 +00:00
global using System.Linq;
global using System.Text.Json;
global using System.Net.Http;
global using System.Threading;
global using System.Threading.Tasks;
global using Microsoft.AspNetCore.Http;
global using Microsoft.Extensions.Logging;
global using Microsoft.Extensions.DependencyInjection;
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.Utilities;
global using BotSharp.Abstraction.Messaging;
global using BotSharp.Abstraction.Messaging.Models.RichContent;
global using BotSharp.Abstraction.Options;
2024-07-17 18:31:09 +00:00
global using BotSharp.Abstraction.Messaging.Enums;
global using BotSharp.Abstraction.Agents.Enums;
global using BotSharp.Abstraction.Files;
global using BotSharp.Abstraction.Files.Enums;
global using BotSharp.Abstraction.Files.Models;
global using BotSharp.Abstraction.MLTasks;
global using BotSharp.Abstraction.Repositories;
global using BotSharp.Core.Infrastructures;
2024-07-18 15:01:09 +00:00
global using BotSharp.Plugin.EmailHandler.LlmContexts;
global using BotSharp.Plugin.EmailHandler.Hooks;
global using BotSharp.Plugin.EmailHandler.Settings;