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

37 lines
1.6 KiB
C#
Raw Normal View History

2023-11-22 16:27:55 +00:00
global using System;
global using System.Collections.Generic;
global using System.Text;
global using System.Threading.Tasks;
global using System.Linq;
global using System.Text.Json;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Logging;
global using BotSharp.Abstraction.Plugins;
global using BotSharp.Abstraction.Agents;
global using BotSharp.Abstraction.Conversations;
global using BotSharp.Abstraction.Knowledges;
global using BotSharp.Abstraction.Users;
global using BotSharp.Abstraction.Utilities;
global using BotSharp.Abstraction.Agents.Settings;
global using BotSharp.Abstraction.Conversations.Settings;
global using BotSharp.Abstraction.Agents.Enums;
global using BotSharp.Abstraction.Conversations.Models;
2024-07-24 17:10:24 +00:00
global using BotSharp.Abstraction.Agents.Models;
global using BotSharp.Abstraction.Functions.Models;
global using BotSharp.Abstraction.Loggers;
global using BotSharp.Abstraction.Loggers.Enums;
global using BotSharp.Abstraction.Loggers.Models;
global using BotSharp.Abstraction.Options;
global using BotSharp.Abstraction.Repositories;
global using BotSharp.Abstraction.Routing;
global using BotSharp.Abstraction.Messaging;
global using BotSharp.Abstraction.Messaging.Enums;
global using BotSharp.Abstraction.Messaging.Models.RichContent;
2025-02-13 20:52:46 +00:00
global using BotSharp.Abstraction.Templating;
2025-05-01 17:47:30 +00:00
global using BotSharp.Abstraction.Realtime;
global using BotSharp.Abstraction.Realtime.Models;
2025-02-13 20:52:46 +00:00
global using BotSharp.Plugin.ChatHub.Settings;
2025-04-23 23:07:54 +00:00
global using BotSharp.Plugin.ChatHub.Enums;
2025-05-07 21:34:39 +00:00
global using BotSharp.Plugin.ChatHub.Models.Stream;