├── .github └── workflows │ └── ci.yml ├── LICENSE ├── PowerShellGemini.psd1 ├── PowerShellGemini.psm1 ├── Private └── README.md ├── Public └── README.md ├── PublishToGallery.ps1 ├── README.md └── __tests__ └── README.md /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | paths-ignore: 4 | - "README.md" 5 | - "changelog.md" 6 | - "CommunityContributions/**" 7 | branches: 8 | - master 9 | 10 | pull_request: 11 | 12 | jobs: 13 | validate: 14 | runs-on: ${{ matrix.os }} 15 | strategy: 16 | matrix: 17 | os: [windows-latest, ubuntu-latest, macos-latest] 18 | steps: 19 | - uses: actions/checkout@v1 20 | - name: Run Continuous Integration 21 | shell: pwsh 22 | run: | 23 | Install-Module -Name PowerShellAI.Functions -Force 24 | 25 | cd ./__tests__ 26 | Invoke-Pester -Output Detailed 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Doug Finke 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PowerShellGemini.psd1: -------------------------------------------------------------------------------- 1 | # Not yet implemented 2 | @{ 3 | RootModule = 'PowerShellGeminu.psm1' 4 | ModuleVersion = '0.1.0' 5 | GUID = 'e59d30ab-86ca-4d2d-8593-a9cedc2863b4' 6 | Author = 'Douglas Finke' 7 | CompanyName = 'Doug Finke' 8 | Copyright = 'c 2023 All rights reserved.' 9 | 10 | Description = @' 11 | PowerShell integration for Google's versatile Gemini Pro API 12 | '@ 13 | 14 | # Modules that must be imported into the global environment prior to importing this module 15 | RequiredModules = @() 16 | 17 | FunctionsToExport = @() 18 | 19 | AliasesToExport = @() 20 | 21 | PrivateData = @{ 22 | PSData = @{ 23 | Category = "PowerShell Gemini Module" 24 | Tags = @("PowerShell", "Gemini", "Google") 25 | ProjectUri = "https://github.com/dfinke/PowerShellGemini" 26 | LicenseUri = "https://github.com/dfinke/PowerShellGemini/blob/main/LICENSE" 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /PowerShellGemini.psm1: -------------------------------------------------------------------------------- 1 | # Not yet implemented -------------------------------------------------------------------------------- /Private/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Public/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PublishToGallery.ps1: -------------------------------------------------------------------------------- 1 | $p = @{ 2 | Name = "PowerShellGemini" 3 | NuGetApiKey = $NuGetApiKey 4 | } 5 | 6 | Publish-Module @p -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PowerShellGemini 2 | 3 | [Gemini API Overview](https://ai.google.dev/docs/gemini_api_overview) 4 | 5 | PowerShellGemini is a community-driven module designed to harness the power of Google's Gemini Pro API, a cutting-edge AI technology. 6 | 7 | Gemini Pro stands out with its multimodal capabilities, seamlessly integrating and understanding diverse information types like text, code, audio, image, and video. 8 | 9 | It's optimized for a wide range of tasks, offering developers and enterprises unparalleled AI functionalities, including sophisticated reasoning and advanced coding capabilities. This module empowers PowerShell users to easily tap into Gemini's robust AI features, fostering innovative solutions and efficient workflows. 10 | -------------------------------------------------------------------------------- /__tests__/README.md: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------