add code explainer semantic function

This commit is contained in:
Ryan Sweet
2023-07-14 14:24:24 -07:00
parent 23d2e7ab91
commit 5a3b47eef7
2 changed files with 30 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ public class SemanticFunctionConfig
(nameof(PM), nameof(PM.BootstrapProject)) => PM.BootstrapProject,
(nameof(PM), nameof(PM.Readme)) => PM.Readme,
(nameof(DevLead), nameof(DevLead.Plan)) => DevLead.Plan,
(nameof(CodeExplainer), nameof(CodeExplainer.Explain)) => CodeExplainer.Explain,
(nameof(Developer), nameof(Developer.Implement)) => Developer.Implement,
(nameof(Developer), nameof(Developer.Improve)) => Developer.Improve,
_ => throw new ArgumentException($"Unable to find {skillName}.{functionName}")