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>
This commit is contained in:
Kosta Petan
2023-06-08 17:27:11 +02:00
committed by GitHub
parent 0b920fcdfd
commit 1fcac0179d
7 changed files with 108 additions and 30 deletions

View File

@@ -2,24 +2,18 @@ using System.Text.Json.Serialization;
public class Subtask
{
[JsonPropertyName("subtask")]
public string Name { get; set; }
[JsonPropertyName("LLM_prompt")]
public string LLMPrompt { get; set; }
public string subtask { get; set; }
public string LLM_prompt { get; set; }
}
public class Step
{
[JsonPropertyName("step")]
public string Name { get; set; }
[JsonPropertyName("description")]
public string Description { get; set; }
[JsonPropertyName("subtasks")]
public List<Subtask> Subtasks { get; set; }
public string description { get; set; }
public string step { get; set; }
public List<Subtask> subtasks { get; set; }
}
public class DevLeadPlanResponse
{
[JsonPropertyName("steps")]
public List<Step> Steps { get; set; }
public List<Step> steps { get; set; }
}