Ryan Sweet b6597fdd24
rysweet-unsubscribe-and-agent-tests-4744 (#4920)
* 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.
2025-01-24 19:24:00 -08:00

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();
}
}