-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathPowerShellAI.psd1
48 lines (44 loc) · 1.4 KB
/
PowerShellAI.psd1
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@{
RootModule = 'PowerShellAI.psm1'
ModuleVersion = '0.4.7'
GUID = '081ce7b4-6e63-41ca-92a7-2bf72dbad018'
Author = 'Douglas Finke'
CompanyName = 'Doug Finke'
Copyright = 'c 2023 All rights reserved.'
Description = @'
The PowerShell AI module integrates with the OpenAI API and let's you easily access the GPT models for text completion, image generation and more.
'@
FunctionsToExport = @(
'ai'
'ConvertFrom-GPTMarkdownTable'
'copilot'
'Disable-AIShortCutKey'
'Enable-AIShortCutKey'
'Get-DalleImage'
'Get-GPT3Completion'
'Get-OpenAIModel'
'Get-OpenAIModeration'
'Invoke-OpenAIAPI'
'Set-DalleImageAsWallpaper'
'Set-OpenAIKey'
'Get-OpenAIBaseRestUri'
'Get-OpenAICompletionsUri'
'Get-OpenAIImagesGenerationsUri'
'Get-OpenAIModelsUri'
'Get-OpenAIModerationsUri'
'Get-OpenAIEditsUri'
'Get-OpenAIEdit'
'New-SpreadSheet'
)
AliasesToExport = @(
'gpt'
)
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"
}
}
}