mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-06 08:30:50 +00:00

* add tests for core functionality and client/server * add remove subscription, get subscriptions * fix LOTS of bugs * add grpc tuning * adapt to latest agreed agents_worker proto changes.
24 lines
528 B
C#
24 lines
528 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// AiAgent.cs
|
|
|
|
using Microsoft.AutoGen.Core;
|
|
|
|
namespace DevTeam.Agents;
|
|
|
|
public class AiAgent<T> : Agent
|
|
{
|
|
public AiAgent(AgentsMetadata eventTypes, ILogger<AiAgent<T>> logger) : base(eventTypes, logger)
|
|
{
|
|
}
|
|
|
|
protected async Task AddKnowledge(string instruction, string v)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected async Task<string> CallFunction(string prompt)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|