Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-01 20:23:54 +02:00
parent 3b3728c58d
commit 1830da496d
2 changed files with 1621 additions and 21 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -48,12 +48,12 @@ async Task<string> RunCopilot(IEnumerable<string> extraArgs, string prompt)
{
var output = new StringBuilder();
var argList = new List<string> { "--model", "auto", "--allow-all-tools" };
var argList = new List<string> { "launch", "copilot", "--model", "minimax-m2.7:cloud", "--yes", "--", "--allow-all-tools" };
argList.AddRange(extraArgs);
argList.Add("-p");
argList.Add(prompt);
var psi = new ProcessStartInfo("copilot")
var psi = new ProcessStartInfo("ollama")
{
WorkingDirectory = repoRoot,
RedirectStandardOutput = true,