merge with latest main

This commit is contained in:
SergeyMenshykh
2026-02-09 13:26:06 +00:00
667 changed files with 27645 additions and 19375 deletions
@@ -33,7 +33,7 @@ public class AIProjectClientFixture : IChatClientAgentFixture
return response.Value.Id;
}
public async Task<List<ChatMessage>> GetChatHistoryAsync(AgentSession session)
public async Task<List<ChatMessage>> GetChatHistoryAsync(AIAgent agent, AgentSession session)
{
var chatClientSession = (ChatClientAgentSession)session;
@@ -53,7 +53,7 @@ public class AIProjectClientFixture : IChatClientAgentFixture
return [];
}
return (await chatClientSession.ChatHistoryProvider.InvokingAsync(new([]))).ToList();
return (await chatClientSession.ChatHistoryProvider.InvokingAsync(new(agent, session, []))).ToList();
}
private async Task<List<ChatMessage>> GetChatHistoryFromResponsesChainAsync(string conversationId)