mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-23 20:48:02 -05:00
removed unused code (#3940)
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
namespace Microsoft.AutoGen.Abstractions;
|
||||
|
||||
public interface IAgent
|
||||
{
|
||||
Task HandleEvent(CloudEvent item);
|
||||
Task PublishEvent(CloudEvent item);
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user