-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaitoolkit.psd1
71 lines (58 loc) · 2.19 KB
/
aitoolkit.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
# Module manifest for module 'aitoolkit'
#
# Generated by: Chrissy LeMaire
#
# Generated on: 4/7/2024
#
@{
# Version number of this module.
ModuleVersion = '0.0.2'
RootModule = 'aitoolkit.psm1'
# ID used to uniquely identify this module
GUID = 'be7e6a35-00ca-4d93-8f51-1cb47ab19dc6'
# Author of this module
Author = 'Chrissy LeMaire'
# Company or vendor of this module
CompanyName = 'cl'
# Copyright statement for this module
Copyright = '2024'
# Description of the functionality provided by this module
Description = 'PowerShell module for interacting with the AI Toolkit API'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()
FunctionsToExport = @(
'Dismount-AITModel',
'Get-AITModel',
'Get-AITMountedModel',
'Get-AITServer',
'Mount-AITModel',
'Request-AITChatCompletion',
'Set-AITConfig',
#'Start-AITServer',
#'Stop-AITServer',
'Test-AITServerStatus'
)
AliasesToExport = @(
'Load-AITModel',
'Unload-AITModel'
)
PrivateData = @{
# PSData is module packaging and gallery metadata embedded in PrivateData
# It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages
# We had to do this because it's the only place we're allowed to extend the manifest
# https://connect.microsoft.com/PowerShell/feedback/details/421837
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
Category = "AI"
# Keyword tags to help users find this module via navigations and search.
Tags = @('ai', 'chatgpt', 'openai', 'api', 'ml')
# The web address of an icon which can be used in galleries to represent this module
IconUri = ""
# Indicates this is a pre-release/testing version of the module.
IsPrerelease = 'False'
}
}
}