Merge pull request #552 from iceljc/master
relocate email handler settings
This commit is contained in:
commit
453779a83f
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>$(TargetFramework)</TargetFramework>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace BotSharp.Abstraction.Email.Settings;
|
||||
namespace BotSharp.Plugin.EmailHandler.Settings;
|
||||
|
||||
public class EmailHandlerSettings
|
||||
{
|
||||
|
|
@ -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;
|
||||
|
|
@ -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.
|
||||
Loading…
Reference in a new issue