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

35 lines
1.6 KiB
C#
Raw Normal View History

global using System;
global using System.IO;
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.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.Conversations.Models;
global using BotSharp.Abstraction.Agents.Settings;
2024-08-15 23:19:10 +00:00
global using BotSharp.Abstraction.Graph;
global using BotSharp.Abstraction.Knowledges.Settings;
2024-08-06 19:01:26 +00:00
global using BotSharp.Abstraction.Knowledges.Enums;
global using BotSharp.Abstraction.VectorStorage;
2024-08-23 16:25:44 +00:00
global using BotSharp.Abstraction.VectorStorage.Models;
global using BotSharp.Abstraction.Knowledges.Models;
global using BotSharp.Abstraction.MLTasks;
2024-08-06 19:01:26 +00:00
global using BotSharp.Abstraction.Functions;
global using BotSharp.Abstraction.Messaging.Enums;
global using BotSharp.Abstraction.Messaging.Models.RichContent.Template;
global using BotSharp.Abstraction.Messaging.Models.RichContent;
global using BotSharp.Abstraction.Messaging;
global using BotSharp.Abstraction.Agents.Enums;
global using BotSharp.Abstraction.Agents.Models;
global using BotSharp.Abstraction.Functions.Models;
global using BotSharp.Abstraction.Repositories;
2024-08-22 20:23:22 +00:00
global using BotSharp.Plugin.KnowledgeBase.Enum;
2024-08-28 16:08:12 +00:00
global using BotSharp.Plugin.KnowledgeBase.Helpers;