-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPSWeave.psd1
35 lines (30 loc) · 1.08 KB
/
PSWeave.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
@{
RootModule = 'PSWeave.psm1'
ModuleVersion = '0.3.2'
GUID = '5fc57b3b-8500-40be-ac8f-1afe13d72244'
Author = 'Douglas Finke'
CompanyName = 'Doug Finke'
Copyright = '© 2024 All rights reserved.'
Description = @'
PowerShell module that innovates automation with AI to make you more productive
'@
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(
@{ModuleName = 'PSAI'; ModuleVersion = "0.1.0" ; GUID = "68662d19-a8f1-484f-b1b7-3bf0e8a436df" }
)
FunctionsToExport = @(
'Add-PromptPath'
'Get-WeavePromptPath'
'Get-WeaveContent'
'Weave'
)
AliasesToExport = @()
PrivateData = @{
PSData = @{
Category = "PowerShell GPT AI OpenAI Module"
Tags = @("PowerShell", "GPT", "OpenAI", "AI")
ProjectUri = "https://github.com/dfinke/PSWeave"
LicenseUri = "https://github.com/dfinke/PSWeave/blob/master/LICENSE"
}
}
}