Skip to content

Commit

Permalink
Update finetuna.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed Jun 29, 2024
1 parent c9b0f90 commit 7d4ebc9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions finetuna.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ foreach ($file in (Get-ChildItem -Path $publicdir -Filter *.ps1)) {
. Import-ModuleFile -Path $file.FullName
}

# Import all internal functions
foreach ($function in (Get-ChildItem "$ModuleRoot\private\" -Filter "*.ps1" -Recurse -ErrorAction Ignore)) {
. Import-ModuleFile -Path $function.FullName
}

$PSDefaultParameterValues["*:NoTypeInformation"] = $true

Set-Alias -Name Invoke-TunedChat -Value Invoke-TuneChat
Expand Down

0 comments on commit 7d4ebc9

Please sign in to comment.