// Copyright (c) Microsoft Corporation. All rights reserved. // AiAgent.cs using Microsoft.AutoGen.Core; namespace DevTeam.Agents; public class AiAgent : Agent { public AiAgent(AgentsMetadata eventTypes, ILogger> logger) : base(eventTypes, logger) { } protected async Task AddKnowledge(string instruction, string v) { throw new NotImplementedException(); } protected async Task CallFunction(string prompt) { throw new NotImplementedException(); } }