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

36 lines
1.4 KiB
C#
Raw Normal View History

2024-07-10 02:17:36 +00:00
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.IO;
global using System.Threading.Tasks;
2025-02-07 17:18:47 +00:00
global using System.Text.Json.Serialization;
2025-04-05 20:23:02 +00:00
global using System.Text;
global using System.Text.Json;
global using System.Threading;
2025-02-07 17:18:47 +00:00
2024-07-10 02:17:36 +00:00
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Logging;
2025-02-07 17:18:47 +00:00
2024-07-10 02:17:36 +00:00
global using BotSharp.Abstraction.Agents.Enums;
2025-02-05 23:50:32 +00:00
global using BotSharp.Abstraction.Agents.Constants;
2024-07-10 02:17:36 +00:00
global using BotSharp.Abstraction.Agents.Models;
global using BotSharp.Abstraction.Conversations;
global using BotSharp.Abstraction.Conversations.Models;
global using BotSharp.Abstraction.Loggers;
global using BotSharp.Abstraction.MLTasks;
global using BotSharp.Abstraction.Agents;
global using BotSharp.Abstraction.Files;
global using BotSharp.Abstraction.Files.Models;
global using BotSharp.Abstraction.Utilities;
2025-04-05 20:23:02 +00:00
global using BotSharp.Abstraction.Conversations.Enums;
global using BotSharp.Abstraction.Files.Utilities;
global using BotSharp.Abstraction.Functions.Models;
global using BotSharp.Abstraction.MLTasks.Settings;
global using BotSharp.Abstraction.Options;
global using BotSharp.Abstraction.Realtime;
global using BotSharp.Abstraction.Realtime.Models;
2025-05-07 21:34:39 +00:00
global using BotSharp.Abstraction.Realtime.Models.Session;
2025-04-05 20:23:02 +00:00
global using BotSharp.Core.Infrastructures;
2025-05-07 21:34:39 +00:00
global using BotSharp.Core.Session;
2024-07-10 02:17:36 +00:00
global using BotSharp.Plugin.OpenAI.Models;
2025-05-07 21:34:39 +00:00
global using BotSharp.Plugin.OpenAI.Settings;