relocate email handler settings

This commit is contained in:
Jicheng Lu 2024-07-18 10:01:09 -05:00
parent 418a7132be
commit 62dbe5c48c
5 changed files with 7 additions and 12 deletions

View file

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(TargetFramework)</TargetFramework>

View file

@ -1,13 +1,6 @@
using BotSharp.Abstraction.Agents;
using BotSharp.Abstraction.Email.Settings;
using BotSharp.Abstraction.Settings;
using BotSharp.Plugin.EmailHandler.Hooks;
using Microsoft.Extensions.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Plugin.EmailHandler
{

View file

@ -1,4 +1,4 @@
namespace BotSharp.Abstraction.Email.Settings;
namespace BotSharp.Plugin.EmailHandler.Settings;
public class EmailHandlerSettings
{

View file

@ -21,11 +21,12 @@ global using BotSharp.Abstraction.Messaging.Models.RichContent;
global using BotSharp.Abstraction.Options;
global using BotSharp.Abstraction.Messaging.Enums;
global using BotSharp.Abstraction.Agents.Enums;
global using BotSharp.Abstraction.Email.Settings;
global using BotSharp.Abstraction.Files;
global using BotSharp.Abstraction.Files.Enums;
global using BotSharp.Abstraction.Files.Models;
global using BotSharp.Abstraction.MLTasks;
global using BotSharp.Abstraction.Repositories;
global using BotSharp.Core.Infrastructures;
global using BotSharp.Plugin.EmailHandler.LlmContexts;
global using BotSharp.Plugin.EmailHandler.LlmContexts;
global using BotSharp.Plugin.EmailHandler.Hooks;
global using BotSharp.Plugin.EmailHandler.Settings;

View file

@ -1 +1,2 @@
Please call handle_email_request if user wants to send out an email.
Please call handle_email_request if user wants to send out an email.
** Please take a look at the conversation, and decide whether user wants to send email with attachments or not.