autogen/cli/Models/DevLeadPlanResponse.cs
Kosta Petan 1fcac0179d Chaining the whole team (#1)
* do it all :)

* save implementation as it comes

* add sandbox skill

* generate files via the sandbox skill in output/src

---------

Co-authored-by: Kosta Petan <kosta.petan@microsoft.com>
2023-06-08 17:27:11 +02:00

19 lines
378 B
C#

using System.Text.Json.Serialization;
public class Subtask
{
public string subtask { get; set; }
public string LLM_prompt { get; set; }
}
public class Step
{
public string description { get; set; }
public string step { get; set; }
public List<Subtask> subtasks { get; set; }
}
public class DevLeadPlanResponse
{
public List<Step> steps { get; set; }
}