removed unused code (#3940)

This commit is contained in:
Ryan Sweet
2024-10-23 21:57:37 -07:00
committed by GitHub
parent e772951146
commit 8f6dc4e1dd
2 changed files with 0 additions and 20 deletions

View File

@@ -1,7 +0,0 @@
namespace Microsoft.AutoGen.Abstractions;
public interface IAgent
{
Task HandleEvent(CloudEvent item);
Task PublishEvent(CloudEvent item);
}

View File

@@ -1,13 +0,0 @@
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.Connectors.OpenAI;
namespace Microsoft.AutoGen.Abstractions;
public interface IAiAgent : IAgent
{
void AddToHistory(string message, ChatUserType userType);
string AppendChatHistory(string ask);
Task<string> CallFunction(string template, KernelArguments arguments, OpenAIPromptExecutionSettings? settings = null);
Task<KernelArguments> AddKnowledge(string instruction, string index, KernelArguments arguments);
}