ChatGPS.psd1

#
# Module manifest for module 'ChatGPS'
#
# Generated by: Adam Edwards (adamedx)
#
# Generated on: 11/24/2023
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'src/ChatGPS.psm1'

# Version number of this module.
ModuleVersion = '0.1.0'

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = '9333772d-94da-46a1-a959-32d3085c8e12'

# Author of this module
Author = 'Adam Edwards (adamedx)'

# Company or vendor of this module
CompanyName = 'Modulus Group'

# Copyright statement for this module
Copyright = '(c) Adam Edwards.'

# Description of the functionality provided by this module
Description = 'AI PowerShell user experience enhancements and automation.'

# Minimum version of the PowerShell engine required by this module
# PowerShellVersion = ''

# Name of the PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# ClrVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @('lib/BaseTypes.dll', 'lib/ChatGPSLib.dll')

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
ScriptsToProcess = @('src/init/ModuleParentEnvironment.ps1')

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = @('src/format/format.ps1xml')

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()

# 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 = @(
    'Add-ChatPlugin'
    'Add-ChatPluginFunction'
    'Build-ChatCode'
    'Clear-ChatConversation'
    'Clear-ChatLog'
    'Connect-ChatSession'
    'Get-ChatConversation'
    'Get-ChatCurrentVoice'
    'Get-ChatEncryptedUnicodeKeyCredential'
    'Get-ChatFunction'
    'Get-ChatLog'
    'Get-ChatPlugin'
    'Get-ChatSession'
    'Get-ChatSettingsInfo'
    'Get-ChatVoiceName'
    'Install-ChatAddOn'
    'Invoke-ChatFunction'
    'New-ChatFunction'
    'New-ChatVoice'
    'New-ChatScriptBlock'
    'New-ChatSettings'
    'Out-ChatVoice'
    'Register-ChatPlugin'
    'Remove-ChatFunction'
    'Remove-ChatPlugin'
    'Remove-ChatSession'
    'Save-ChatSessionSetting'
    'Select-ChatSession'
    'Send-ChatMessage'
    'Set-ChatAgentAccess'
    'Set-ChatCurrentVoice'
    'Start-ChatShell'
    'Unregister-ChatPlugin'
    'Update-ChatSettings'
)

# 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 = @(
    'chatgps'
    'Clear-ChatHistory'
    'frun'
    'Generate-ChatCode'
    'Get-ChatHistory'
    'gss'
    'ncs'
    'sch'
    'scs'
    'Start-ChatRepl'
)

# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
FileList = @(
    'ChatGPS.psd1'
    'lib/ChatGPSLib.dll'
    'src/addons.ps1'
    'src/aliases.ps1'
    'src/ChatGPS.psm1'
    'src/ChatGPS.ps1'
    'src/addons/addons.ps1'
    'src/addons/Program.ps1'
    'src/addons/Tools.ps1'
    'src/codegen.ps1'
    'src/codegen/CodeGeneration.ps1'
    'src/codegen/PowerShellCodeGen.ps1'
    'src/commands.ps1'
    'src/commands/Add-ChatPlugin.ps1'
    'src/commands/Add-ChatPluginFunction.ps1'
    'src/commands/Build-ChatCode.ps1'
    'src/commands/Clear-ChatConversation.ps1'
    'src/commands/Clear-ChatLog.ps1'
    'src/commands/Connect-ChatSession.ps1'
    'src/commands/Get-ChatConversation.ps1'
    'src/commands/Get-ChatCurrentVoice.ps1'
    'src/commands/Get-ChatEncryptedUnicodeKeyCredential.ps1'
    'src/commands/Get-ChatFunction.ps1'
    'src/commands/Get-ChatLog.ps1'
    'src/commands/Get-ChatPlugin.ps1'
    'src/commands/Get-ChatSession.ps1'
    'src/commands/Get-ChatSettingsInfo.ps1'
    'src/commands/Get-ChatVoiceName.ps1'
    'src/commands/Install-ChatAddOn.ps1'
    'src/commands/Invoke-ChatFunction.ps1'
    'src/commands/New-ChatFunction.ps1'
    'src/commands/New-ChatScriptBlock.ps1'
    'src/commands/New-ChatSettings.ps1'
    'src/commands/New-ChatVoice.ps1'
    'src/commands/Out-ChatVoice.ps1'
    'src/commands/Register-ChatPlugin.ps1'
    'src/commands/Remove-ChatFunction.ps1'
    'src/commands/Remove-ChatPlugin.ps1'
    'src/commands/Remove-ChatSession.ps1'
    'src/commands/Save-ChatSessionSetting.ps1'
    'src/commands/Select-ChatSession.ps1'
    'src/commands/Send-ChatMessage.ps1'
    'src/commands/Set-ChatAgentAccess.ps1'
    'src/commands/Set-ChatCurrentVoice.ps1'
    'src/commands/Start-ChatShell.ps1'
    'src/commands/Unregister-ChatPlugin.ps1'
    'src/commands/Update-ChatSettings.ps1'
    'src/config.ps1'
    'src/config/Settings.ps1'
    'src/format/colorstring.ps1'
    'src/format/format.ps1xml'
    'src/function.ps1'
    'src/function/Function.ps1'
    'src/init/ModuleParentEnvironment.ps1'
    'src/intent.ps1'
    'src/intent/PromptBook.ps1'
    'src/native.ps1'
    'src/plugins.ps1'
    'src/plugins/GeneratePlugin.ps1'
    'src/plugins/PluginParameter.ps1'
    'src/plugins/PluginParameterCompleter.ps1'
    'src/plugins/PluginUtilities.ps1'
    'src/presentation.ps1'
    'src/presentation/model.ps1'
    'src/presentation/reply.ps1'
    'src/presentation/voice.ps1'
    'src/services.ps1'
    'src/services/compatibility.ps1'
    'src/services/session.ps1'
    'src/shell.ps1'
    'src/shell/replcommand.ps1'
    'src/shell/ReplState.ps1'
    'src/shell/shellux.ps1'
)

# 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 = @('DevOps', 'AI', 'LLM', 'GPT', 'Azure', 'OpenAI', 'Onnx', 'Phi', 'Ollama', 'Gemini', 'Anthropic', 'Claude')

        # A URL to the license for this module.
        LicenseUri = 'http://www.apache.org/licenses/LICENSE-2.0'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/adamedx/ChatGPS'

        # A URL to an icon representing this module.
        IconUri = 'https://raw.githubusercontent.com/adamedx/ChatGPS/main/ChatGPS/assets/ChatGPS.png'

        # Prerelease string of this module
        Prerelease = 'preview'

        # Flag to indicate whether the module requires explicit user acceptance for install/update/save
        RequireLicenseAcceptance = $false

        # External dependent modules of this module
        # ExternalModuleDependencies = @()

        # ReleaseNotes of this module
        ReleaseNotes = @'
## ChatGPS Release Notes
 
Initial release of the ChatGPS module for large language model orchestration and integration with PowerShell.
 
### New dependencies
 
* Microsoft.SemanticKernel 1.59.0
 
### Breaking changes
 
N/A, initial release.
 
### New features
 
* Commands to send a request for chat completions to a large language model and receive a response
* Interactive read-eval-print loop (REPL) for interactive chat
* Support for OpenAI, Azure OpenAI, Anthropic, Google Gemini, Ollama, and Onnx model providers
* Define functions with natural language and invoke them
* Bind PowerShell functions to natural language functions
* Support for plugins for time, file system access, http access, internet search, Word documents
* Create custom plugins using PowerShell
* Commands for generating code for multiple programming /scripting langauges from natural language
* Asynchronous execution for chat completions commands
* Integration with OpenTelemetry logging, including in Semantic Kernel libraries
* Settings configuration file for defining access to language models
* Use multiple language models interactively and / or in scripts
 
### Fixed defects
 
N/A, initial release.
 
'@


    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}