Adding nuget.config + Small Async fix (#62)

* Async fix

* Fix warnings
This commit is contained in:
Roger Barreto
2025-06-09 11:33:27 +00:00
committed by GitHub
parent af2295f130
commit 2a1c8ea1a3
3 changed files with 9 additions and 2 deletions
@@ -46,7 +46,7 @@ public abstract class Agent
/// If an agent supports multiple thread types, this method should return the default thread
/// type for the agent or whatever the agent was configured to use.
/// </remarks>
public abstract AgentThread CreateThreadAsync();
public abstract Task<AgentThread> CreateThreadAsync();
/// <summary>
/// Run the agent with no message assuming that all required instructions are already provided to the agent or on the thread.