├── .github └── workflows │ └── ci.yml ├── CommunityContributions ├── 01-GettingStarted │ └── GettingStarted.ipynb ├── 02-GitAndGPT │ └── Git-Examples.ipynb ├── 03-AIPrompts-UsingTheModule │ ├── AI-Commands.ps1 │ └── README.md └── README.md ├── Examples └── Excel │ └── New-Spreadsheet.ps1 ├── InstallModule.ps1 ├── LICENSE.txt ├── PowerShellAI.psd1 ├── PowerShellAI.psm1 ├── Private ├── CreateBoxText.ps1 ├── CustomReadHost.ps1 ├── Get-OpenAIKey.ps1 └── Test-OpenAIKey.ps1 ├── Public ├── ConvertFrom-GPTMarkdownTable.ps1 ├── Disable-AIShortCutKey.ps1 ├── Enable-AIShortCutKey.ps1 ├── Get-DalleImage.ps1 ├── Get-GPT3Completion.ps1 ├── Get-OpenAIBaseRestURI.ps1 ├── Get-OpenAICompletionsURI.ps1 ├── Get-OpenAIEdit.ps1 ├── Get-OpenAIEditsURI.ps1 ├── Get-OpenAIImagesGenerationsURI.ps1 ├── Get-OpenAIModel.ps1 ├── Get-OpenAIModelsURI.ps1 ├── Get-OpenAIModeration.ps1 ├── Get-OpenAIModerationsURI.ps1 ├── Invoke-OpenAIAPI.ps1 ├── New-Spreadsheet.ps1 ├── Set-DalleImageAsWallpaper.ps1 ├── Set-OpenAIKey.ps1 ├── ai.ps1 └── copilot.ps1 ├── PublishToGallery.ps1 ├── README.md ├── __tests__ ├── ConvertFrom-GPTMarkdownTable.tests.ps1 ├── Get-OpenAIKey.tests.ps1 ├── OpenAIUri.tests.ps1 └── Set-OpenAIKey.tests.ps1 ├── changelog.md └── media ├── AIReplace.png ├── Copilot-GPT-At-The-CLI.png ├── GPT3Completion.gif └── NewSpreadsheet.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CommunityContributions/01-GettingStarted/GettingStarted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/CommunityContributions/01-GettingStarted/GettingStarted.ipynb -------------------------------------------------------------------------------- /CommunityContributions/02-GitAndGPT/Git-Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/CommunityContributions/02-GitAndGPT/Git-Examples.ipynb -------------------------------------------------------------------------------- /CommunityContributions/03-AIPrompts-UsingTheModule/AI-Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/CommunityContributions/03-AIPrompts-UsingTheModule/AI-Commands.ps1 -------------------------------------------------------------------------------- /CommunityContributions/03-AIPrompts-UsingTheModule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/CommunityContributions/03-AIPrompts-UsingTheModule/README.md -------------------------------------------------------------------------------- /CommunityContributions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/CommunityContributions/README.md -------------------------------------------------------------------------------- /Examples/Excel/New-Spreadsheet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Examples/Excel/New-Spreadsheet.ps1 -------------------------------------------------------------------------------- /InstallModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/InstallModule.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PowerShellAI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/PowerShellAI.psd1 -------------------------------------------------------------------------------- /PowerShellAI.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/PowerShellAI.psm1 -------------------------------------------------------------------------------- /Private/CreateBoxText.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Private/CreateBoxText.ps1 -------------------------------------------------------------------------------- /Private/CustomReadHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Private/CustomReadHost.ps1 -------------------------------------------------------------------------------- /Private/Get-OpenAIKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Private/Get-OpenAIKey.ps1 -------------------------------------------------------------------------------- /Private/Test-OpenAIKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Private/Test-OpenAIKey.ps1 -------------------------------------------------------------------------------- /Public/ConvertFrom-GPTMarkdownTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/ConvertFrom-GPTMarkdownTable.ps1 -------------------------------------------------------------------------------- /Public/Disable-AIShortCutKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Disable-AIShortCutKey.ps1 -------------------------------------------------------------------------------- /Public/Enable-AIShortCutKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Enable-AIShortCutKey.ps1 -------------------------------------------------------------------------------- /Public/Get-DalleImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-DalleImage.ps1 -------------------------------------------------------------------------------- /Public/Get-GPT3Completion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-GPT3Completion.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIBaseRestURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIBaseRestURI.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAICompletionsURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAICompletionsURI.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIEdit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIEdit.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIEditsURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIEditsURI.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIImagesGenerationsURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIImagesGenerationsURI.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIModel.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIModelsURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIModelsURI.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIModeration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIModeration.ps1 -------------------------------------------------------------------------------- /Public/Get-OpenAIModerationsURI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Get-OpenAIModerationsURI.ps1 -------------------------------------------------------------------------------- /Public/Invoke-OpenAIAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Invoke-OpenAIAPI.ps1 -------------------------------------------------------------------------------- /Public/New-Spreadsheet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/New-Spreadsheet.ps1 -------------------------------------------------------------------------------- /Public/Set-DalleImageAsWallpaper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Set-DalleImageAsWallpaper.ps1 -------------------------------------------------------------------------------- /Public/Set-OpenAIKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/Set-OpenAIKey.ps1 -------------------------------------------------------------------------------- /Public/ai.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/ai.ps1 -------------------------------------------------------------------------------- /Public/copilot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/Public/copilot.ps1 -------------------------------------------------------------------------------- /PublishToGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/PublishToGallery.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/ConvertFrom-GPTMarkdownTable.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/__tests__/ConvertFrom-GPTMarkdownTable.tests.ps1 -------------------------------------------------------------------------------- /__tests__/Get-OpenAIKey.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/__tests__/Get-OpenAIKey.tests.ps1 -------------------------------------------------------------------------------- /__tests__/OpenAIUri.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/__tests__/OpenAIUri.tests.ps1 -------------------------------------------------------------------------------- /__tests__/Set-OpenAIKey.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/__tests__/Set-OpenAIKey.tests.ps1 -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/changelog.md -------------------------------------------------------------------------------- /media/AIReplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/media/AIReplace.png -------------------------------------------------------------------------------- /media/Copilot-GPT-At-The-CLI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/media/Copilot-GPT-At-The-CLI.png -------------------------------------------------------------------------------- /media/GPT3Completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/media/GPT3Completion.gif -------------------------------------------------------------------------------- /media/NewSpreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/PowerShellAI/HEAD/media/NewSpreadsheet.png --------------------------------------------------------------------------------