Ask-GPT.psd1
@{ # Module manifest for Ask-GPT ModuleVersion = '1.0.2' GUID = 'b8c5e8a0-4d1a-4a7e-9b2c-3f4d5e6a7b8c' Author = 'stimpy77' CompanyName = 'Unknown' Copyright = '(c) 2025 stimpy77. All rights reserved.' Description = 'Ask-GPT: Interactive OpenAI GPT integration for PowerShell. EXAMPLES: Ask-GPT "Explain PowerShell arrays"; "What is 2+2?" | Ask-GPT; Ask-GPT -Model gpt-4 "Fix this code". FEATURES: Streaming responses, conversation history, all GPT models, pipeline support, temperature control, ANSI formatting. SETUP: Set $env:OPENAI_API_KEY. Perfect for automation, scripting, code assistance, and interactive AI workflows in PowerShell 7.0+.' PowerShellVersion = '7.0' RootModule = 'Ask-GPT.psm1' FunctionsToExport = @('Ask-GPT') AliasesToExport = @('gpt') CmdletsToExport = @() VariablesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ # Tags applied to this module Tags = @('OpenAI', 'GPT', 'AI', 'Chat', 'API', 'PowerShell', 'Ask-GPT', 'AskGPT', 'ChatGPT', 'CLI', 'CommandLine') # A URL to the license for this module LicenseUri = 'https://github.com/stimpy77/Ask-GPT/blob/main/LICENSE' # License expression or path to license file License = 'MIT' # A URL to the main website for this project ProjectUri = 'https://github.com/stimpy77/ask-gpt' # ReleaseNotes of this module ReleaseNotes = 'Version 1.0.2: Enhanced module description with comprehensive feature overview and usage examples for better PowerShell Gallery visibility. USAGE: Ask-GPT "your question" or "input" | gpt. SETUP: Set OPENAI_API_KEY environment variable. FEATURES: Streaming responses, conversation history, all GPT models, pipeline support, temperature control.' } } } |