Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(TargetFramework)</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace BotSharp.Abstraction.Email.Settings;
namespace BotSharp.Plugin.EmailHandler.Settings;

public class EmailHandlerSettings
{
Expand Down
5 changes: 3 additions & 2 deletions src/Plugins/BotSharp.Plugin.EmailHandler/Using.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@
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;
Original file line number Diff line number Diff line change
@@ -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.