2024-01-06 22:24:22 +00:00
|
|
|
global using System;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Text;
|
2024-07-16 17:08:37 +00:00
|
|
|
global using System.Linq;
|
|
|
|
|
global using System.Text.Json;
|
|
|
|
|
global using System.Threading.Tasks;
|
2024-01-06 22:24:22 +00:00
|
|
|
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 Microsoft.Extensions.DependencyInjection;
|
2024-05-20 21:50:45 +00:00
|
|
|
global using BotSharp.Abstraction.Utilities;
|
|
|
|
|
global using BotSharp.Abstraction.Messaging;
|
|
|
|
|
global using BotSharp.Abstraction.Messaging.Models.RichContent;
|
|
|
|
|
global using BotSharp.Abstraction.Options;
|
2024-07-11 16:30:52 +00:00
|
|
|
global using BotSharp.Abstraction.Messaging.Enums;
|
|
|
|
|
global using BotSharp.Plugin.HttpHandler.Hooks;
|
|
|
|
|
global using BotSharp.Plugin.HttpHandler.Settings;
|
|
|
|
|
global using BotSharp.Plugin.HttpHandler.LlmContexts;
|
|
|
|
|
global using BotSharp.Plugin.HttpHandler.Enums;
|