Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleLittleCloud committed Apr 26, 2024
1 parent 4cceae8 commit cbe887c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AgentFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using AutoGen.OpenAI.Extension;
using Azure.AI.OpenAI;

namespace PowershellGPT;
namespace Powershell.GPT;

internal static class AgentFactory
{
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion PowershellGPT.sln → Powershell.GPT.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34728.123
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowershellGPT", "PowershellGPT.csproj", "{BE308F4F-779C-46F3-9C72-AFE8F088D9B2}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Powershell.GPT", "Powershell.GPT.csproj", "{BE308F4F-779C-46F3-9C72-AFE8F088D9B2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion PowershellRunnerAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Management.Automation;
using System.Text;
using System.Threading.Tasks;
namespace PowershellGPT;
namespace Powershell.GPT;

internal class PowershellRunnerAgent : IAgent
{
Expand Down
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using AutoGen;
using AutoGen.Core;
using Azure.AI.OpenAI;
using PowershellGPT;
using Powershell.GPT;

var AZURE_OPENAI_ENDPOINT = Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT") ?? throw new ArgumentNullException("AZURE_OPENAI_ENDPOINT");
var AZURE_OPENAI_KEY = Environment.GetEnvironmentVariable("AZURE_OPENAI_API_KEY") ?? throw new ArgumentNullException("AZURE_OPENAI_API_KEY");
Expand Down
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## PowershellGPT
## Powershell.GPT

A multi-agent workflow to resolve tasks using powershell scripts.
A dotnet tool which uses multi-agent workflow to resolve tasks using powershell scripts.

To those who struggles with lengthy powershell command.

Expand Down

0 comments on commit cbe887c

Please sign in to comment.