67 lines
3 KiB
C#
67 lines
3 KiB
C#
global using BotSharp.Abstraction.Agents;
|
|
global using BotSharp.Abstraction.Agents.Enums;
|
|
global using BotSharp.Abstraction.Agents.Models;
|
|
global using BotSharp.Abstraction.Agents.Settings;
|
|
global using BotSharp.Abstraction.Conversations;
|
|
global using BotSharp.Abstraction.Conversations.Models;
|
|
global using BotSharp.Abstraction.Conversations.Settings;
|
|
global using BotSharp.Abstraction.Crontab.Models;
|
|
global using BotSharp.Abstraction.Files;
|
|
global using BotSharp.Abstraction.Files.Enums;
|
|
global using BotSharp.Abstraction.Files.Models;
|
|
global using BotSharp.Abstraction.Files.Utilities;
|
|
global using BotSharp.Abstraction.Functions.Models;
|
|
global using BotSharp.Abstraction.Infrastructures.Events;
|
|
global using BotSharp.Abstraction.Knowledges.Models;
|
|
global using BotSharp.Abstraction.Loggers.Services;
|
|
global using BotSharp.Abstraction.MCP.Models;
|
|
global using BotSharp.Abstraction.MCP.Services;
|
|
global using BotSharp.Abstraction.Messaging.Enums;
|
|
global using BotSharp.Abstraction.Plugins;
|
|
global using BotSharp.Abstraction.Repositories;
|
|
global using BotSharp.Abstraction.Repositories.Filters;
|
|
global using BotSharp.Abstraction.Roles;
|
|
global using BotSharp.Abstraction.Roles.Models;
|
|
global using BotSharp.Abstraction.Routing.Enums;
|
|
global using BotSharp.Abstraction.Routing;
|
|
global using BotSharp.Abstraction.SideCar.Attributes;
|
|
global using BotSharp.Abstraction.Statistics.Enums;
|
|
global using BotSharp.Abstraction.Statistics.Models;
|
|
global using BotSharp.Abstraction.Statistics.Services;
|
|
global using BotSharp.Abstraction.Translation;
|
|
global using BotSharp.Abstraction.Translation.Attributes;
|
|
global using BotSharp.Abstraction.Users;
|
|
global using BotSharp.Abstraction.Utilities;
|
|
global using BotSharp.Abstraction.Loggers.Services;
|
|
global using BotSharp.Abstraction.Infrastructures.Events;
|
|
global using BotSharp.Abstraction.Templating.Constants;
|
|
global using BotSharp.Abstraction.Realtime.Models.Session;
|
|
global using BotSharp.Abstraction.Conversations.Enums;
|
|
global using BotSharp.Abstraction.Hooks;
|
|
global using BotSharp.Abstraction.MessageHub.Models;
|
|
global using BotSharp.Core.Agents.Services;
|
|
global using BotSharp.Core.Conversations.Services;
|
|
global using BotSharp.Core.Infrastructures;
|
|
global using BotSharp.Core.Loggers.Services;
|
|
global using BotSharp.Core.Repository;
|
|
global using BotSharp.Core.Routing;
|
|
global using BotSharp.Core.Agents.Services;
|
|
global using BotSharp.Core.Conversations.Services;
|
|
global using BotSharp.Core.Infrastructures;
|
|
global using BotSharp.Core.Infrastructures.Websocket;
|
|
global using BotSharp.Core.Users.Services;
|
|
global using BotSharp.Core.Statistics.Services;
|
|
global using BotSharp.Core.Users.Services;
|
|
global using EntityFrameworkCore.BootKit;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.Linq;
|
|
global using System.Net.Http;
|
|
global using System.Net.Mime;
|
|
global using System.Text;
|
|
global using System.Text.Json;
|
|
global using System.Threading;
|
|
global using System.Threading.Tasks;
|