-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Semantic.Kernel to beta 1.0 release - refactor and update SKon…
…sole project, commands, and plugins (#26) * 🔄 Refactor code, update packages, and improve functions This commit includes updating the Microsoft.SemanticKernel package to version 1.0.0-beta1, refactoring the code to use the new package structure, and improving various functions and classes. Key changes include: - Updating function imports to use new namespaces and classes - Refactoring PromptChatCommand to use AIRequestSettings and ExtensionData - Modifying RespondTo method to return SKContext instead of Task<SKContext> - Updating StepwisePlannerCommand to import functions instead of skills - Adding a new SuperFileIOPlugin class with various file operations - Updating AI request settings in WriterSkill.cs - Refactoring functions in CondenseSkill.cs and PullRequestSkill.cs - Updating method calls and parameter types in PullRequestSkill - Minor code improvements and formatting * 📝 Refactor tasks.json and improve code readability - Refactored tasks.json to include a new "format" task - Simplified KernelProvider using switch expression - Updated Program.cs to use object initializer for RootCommand - Minor changes in CommitParser.cs for better readability * 🔧 Update launch args and improve logging - Update launch arguments in .vscode/launch.json - Replace internalConsole with integratedTerminal - Add SpectreConsole logging and extensions - Improve ArgumentNullException handling in SpectreConsoleExtensions - Add SpectreConsoleLoggerProvider for better logging output
- Loading branch information
1 parent
9fe1f96
commit 5be840d
Showing
21 changed files
with
388 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,52 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/apps/SKonsole/SKonsole.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "publish", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"publish", | ||
"${workspaceFolder}/apps/SKonsole/SKonsole.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "watch", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"watch", | ||
"run", | ||
"--project", | ||
"${workspaceFolder}/apps/SKonsole/SKonsole.csproj" | ||
], | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/apps/SKonsole/SKonsole.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "format", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": ["format", "${workspaceFolder}/skonsole.sln"], | ||
"problemMatcher": "$msCompile", | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "publish", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"publish", | ||
"${workspaceFolder}/apps/SKonsole/SKonsole.csproj", | ||
"/property:GenerateFullPaths=true", | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "watch", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"watch", | ||
"run", | ||
"--project", | ||
"${workspaceFolder}/apps/SKonsole/SKonsole.csproj" | ||
], | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.