2023-05-27 01:58:31 +00:00
|
|
|
global using System;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Text;
|
|
|
|
|
global using System.Threading.Tasks;
|
2023-06-10 02:56:04 +00:00
|
|
|
global using System.Linq;
|
2023-08-14 22:14:05 +00:00
|
|
|
global using System.Text.Json;
|
2023-06-12 13:28:49 +00:00
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
2023-08-14 22:14:05 +00:00
|
|
|
global using Microsoft.Extensions.Logging;
|
2023-06-11 23:46:02 +00:00
|
|
|
global using EntityFrameworkCore.BootKit;
|
2023-08-14 22:14:05 +00:00
|
|
|
global using BotSharp.Abstraction.Plugins;
|
2023-06-18 02:56:22 +00:00
|
|
|
global using BotSharp.Abstraction.Agents;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations;
|
|
|
|
|
global using BotSharp.Abstraction.Knowledges;
|
|
|
|
|
global using BotSharp.Abstraction.Users;
|
2023-07-21 15:15:30 +00:00
|
|
|
global using BotSharp.Abstraction.Utilities;
|
2023-08-30 23:29:01 +00:00
|
|
|
global using BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Agents.Settings;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations.Settings;
|
2023-09-15 20:19:44 +00:00
|
|
|
global using BotSharp.Abstraction.Agents.Enums;
|
2023-06-11 23:46:02 +00:00
|
|
|
global using BotSharp.Core.Repository;
|
2023-06-18 02:56:22 +00:00
|
|
|
global using BotSharp.Core.Agents.Services;
|
|
|
|
|
global using BotSharp.Core.Conversations.Services;
|
|
|
|
|
global using BotSharp.Core.Infrastructures;
|
2023-09-08 17:03:49 +00:00
|
|
|
global using BotSharp.Core.Users.Services;
|
2023-09-22 20:38:58 +00:00
|
|
|
global using Aspects.Cache;
|
|
|
|
|
global using Console = Colorful.Console;
|