forked from StartAutomating/PowerShellAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerShellAI.psd1
More file actions
27 lines (24 loc) · 901 Bytes
/
PowerShellAI.psd1
File metadata and controls
27 lines (24 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@{
RootModule = 'PowerShellAI.psm1'
ModuleVersion = '0.1.0'
GUID = '081ce7b4-6e63-41ca-92a7-2bf72dbad018'
Author = 'Douglas Finke'
CompanyName = 'Doug Finke'
Copyright = 'c 2023 All rights reserved.'
Description = @'
PowerShell GPT AI module allows to integrate with OpenAI API and access GPT-3 model and easily to use with other PowerShell scripts and tools.
'@
FunctionsToExport = @(
'Disable-AIShortCutKey'
'Enable-AIShortCutKey'
'Get-GPT3Completion'
)
PrivateData = @{
PSData = @{
Category = "PowerShell GPT Module"
Tags = @("PowerShell", "GPT", "OpenAI")
ProjectUri = "https://github.com/dfinke/PowerShellAI"
LicenseUri = "https://github.com/dfinke/PowerShellAI/blob/master/LICENSE.txt"
}
}
}