finetuna.psd1
# # Module manifest for module 'finetuna' # # Generated by: Chrissy LeMaire # # Generated on: 10/19/2023 # @{ # Script module or binary module file associated with this manifest. RootModule = 'finetuna.psm1' # Version number of this module. ModuleVersion = '0.7' # Minimum PowerShell version PowerShellVersion = '7.0' # ID used to uniquely identify this module GUID = '3dc00ef4-ff85-48c9-8701-b96aa91cfa99' # Author of this module Author = 'Chrissy LeMaire' # Copyright statement for this module Copyright = 'MIT (c) 2023 Chrissy LeMaire. All rights reserved.' # Description of the functionality provided by this module Description = 'OpenAI Fine Tuner' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @( 'PowerShellAI' 'ReadPDF' ) # Assemblies that must be loaded prior to importing this module # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @( 'Invoke-TuneChat', 'Get-TuneFile', 'Get-TuneFileContent', 'Send-TuneFile', 'Start-TuneJob', 'Stop-TuneJob', 'Get-TuneJob', 'Remove-TuneFile', 'Get-TuneJobEvent' ) # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @("Invoke-TunedChat") # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @("openai", "chatgpt", "modeling", "tuning", "fine-tuning") # A URL to the license for this module. LicenseUri = 'https://github.com/potatoqualitee/finetuna/blob/main/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/potatoqualitee/finetuna' # A URL to an icon representing this module. IconUri = 'https://github.com/potatoqualitee/finetuna/assets/8278033/b6e12c36-afd2-46a1-8024-a9fd12c9b773' } # End of PSData hashtable } # End of PrivateData hashtable } |