mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-10 17:51:22 +00:00

* 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>
19 lines
378 B
C#
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; }
|
|
} |