2024-07-29 19:15:46 +00:00
|
|
|
global using System;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Text;
|
|
|
|
|
global using System.Linq;
|
|
|
|
|
global using System.Text.Json;
|
|
|
|
|
global using System.Threading.Tasks;
|
2024-07-30 18:57:32 +00:00
|
|
|
|
2024-08-11 16:26:57 +00:00
|
|
|
global using BotSharp.Abstraction.Agents;
|
|
|
|
|
global using BotSharp.Abstraction.Agents.Enums;
|
|
|
|
|
global using BotSharp.Abstraction.Agents.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Files;
|
|
|
|
|
global using BotSharp.Abstraction.Files.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Files.Enums;
|
|
|
|
|
global using BotSharp.Abstraction.Functions;
|
2024-07-30 18:57:32 +00:00
|
|
|
global using BotSharp.Abstraction.MLTasks;
|
2024-08-11 16:26:57 +00:00
|
|
|
global using BotSharp.Abstraction.Options;
|
|
|
|
|
global using BotSharp.Abstraction.Plugins;
|
|
|
|
|
global using BotSharp.Abstraction.Utilities;
|
|
|
|
|
|
2024-07-30 18:57:32 +00:00
|
|
|
global using BotSharp.Plugin.AudioHandler.Enums;
|
|
|
|
|
global using BotSharp.Plugin.AudioHandler.Functions;
|
2024-08-11 16:26:57 +00:00
|
|
|
global using BotSharp.Plugin.AudioHandler.Hooks;
|
2024-07-30 18:57:32 +00:00
|
|
|
global using BotSharp.Plugin.AudioHandler.Models;
|
2024-08-11 16:26:57 +00:00
|
|
|
global using BotSharp.Plugin.AudioHandler.LlmContexts;
|
|
|
|
|
global using BotSharp.Plugin.AudioHandler.Provider;
|
2024-07-30 18:57:32 +00:00
|
|
|
|
2024-07-29 19:15:46 +00:00
|
|
|
global using Microsoft.Extensions.Configuration;
|
|
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
global using Microsoft.AspNetCore.Http;
|
|
|
|
|
global using Microsoft.AspNetCore.Authorization;
|
2024-08-11 16:26:57 +00:00
|
|
|
global using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
global using Microsoft.Extensions.Logging;
|