mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
c70e594e6c
* rename AgentRunResponse and AgentRunResponseUpdate classes - part1 * rename varialbles, parameters, methods and tests * rollback unnecessary changes
43 lines
2.4 KiB
C#
43 lines
2.4 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace Microsoft.Agents.AI;
|
|
|
|
internal sealed class TestAIAgent : AIAgent
|
|
{
|
|
public Func<string>? NameFunc;
|
|
public Func<string>? DescriptionFunc;
|
|
|
|
public Func<JsonElement, JsonSerializerOptions?, AgentThread> DeserializeThreadFunc = delegate { throw new NotSupportedException(); };
|
|
public Func<AgentThread> GetNewThreadFunc = delegate { throw new NotSupportedException(); };
|
|
public Func<IEnumerable<ChatMessage>, AgentThread?, AgentRunOptions?, CancellationToken, Task<AgentResponse>> RunAsyncFunc = delegate { throw new NotSupportedException(); };
|
|
public Func<IEnumerable<ChatMessage>, AgentThread?, AgentRunOptions?, CancellationToken, IAsyncEnumerable<AgentResponseUpdate>> RunStreamingAsyncFunc = delegate { throw new NotSupportedException(); };
|
|
public Func<Type, object?, object?>? GetServiceFunc;
|
|
|
|
public override string? Name => this.NameFunc?.Invoke() ?? base.Name;
|
|
|
|
public override string? Description => this.DescriptionFunc?.Invoke() ?? base.Description;
|
|
|
|
public override ValueTask<AgentThread> DeserializeThreadAsync(JsonElement serializedThread, JsonSerializerOptions? jsonSerializerOptions = null, CancellationToken cancellationToken = default) =>
|
|
new(this.DeserializeThreadFunc(serializedThread, jsonSerializerOptions));
|
|
|
|
public override ValueTask<AgentThread> GetNewThreadAsync(CancellationToken cancellationToken = default) =>
|
|
new(this.GetNewThreadFunc());
|
|
|
|
protected override Task<AgentResponse> RunCoreAsync(IEnumerable<ChatMessage> messages, AgentThread? thread = null, AgentRunOptions? options = null, CancellationToken cancellationToken = default) =>
|
|
this.RunAsyncFunc(messages, thread, options, cancellationToken);
|
|
|
|
protected override IAsyncEnumerable<AgentResponseUpdate> RunCoreStreamingAsync(IEnumerable<ChatMessage> messages, AgentThread? thread = null, AgentRunOptions? options = null, CancellationToken cancellationToken = default) =>
|
|
this.RunStreamingAsyncFunc(messages, thread, options, cancellationToken);
|
|
|
|
public override object? GetService(Type serviceType, object? serviceKey = null) =>
|
|
this.GetServiceFunc is { } func ? func(serviceType, serviceKey) :
|
|
base.GetService(serviceType, serviceKey);
|
|
}
|