.NET: Add missing Azure OpenAI Migration Sample code (#559)

* Add missing Azure OpenAI Migration Sample code

* Add Azure OpenAI Assistants Samples

* Address miner README typos

* Remove leftover
This commit is contained in:
Roger Barreto
2025-09-01 12:04:26 +00:00
committed by GitHub
parent 1d2f833122
commit cf0e779638
18 changed files with 776 additions and 8 deletions
@@ -55,6 +55,7 @@ async Task AFAgent()
var agentOptions = new ChatClientAgentRunOptions(new() { MaxOutputTokens = 1000 });
var result = await agent.RunAsync(userInput, thread, agentOptions);
Console.WriteLine(result);
Console.WriteLine("---");
await foreach (var update in agent.RunStreamingAsync(userInput, thread, agentOptions))