Skip to content

Commit

Permalink
Version 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rrg92 committed Nov 14, 2024
1 parent 79c45e2 commit 6da0552
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## [Unreleased]

## [v0.6.5] - 2024-11-14

### Added
- Support for images in `Send-PowershaiChat` for both OpenAI and Google Providers.
- An experimental command, `Invoke-AiScreenshots`, which adds support for taking screenshots and analyzing them!
- Tool calling support in the Google Provider.
- A CHANGE LOG has been initiated
- Tab completion to Set-AiProvider
- Added basic support for structured output to the `Get-AiChat` cmdlet's `ResponseFormat` parameter. This allows passing a hashtable describing the OpenAPI schema of the result.

### Changed
**BREAKING CHANGE**: The `content` property of OpenAI messages is now sent as an array to align with specifications for other media types. This requires updating scripts that rely on the previous single-string format and old providers versions thats dont supports that syntax.
- The `RawParams` of `Get-AiChat` have been fixed. You can now pass raw parameters to the underlying provider to take control of generation. Raw parameters will overwrite those generated by PowerShell.
- DOC Updates: New docs translated with AiDoc and updates. Minor fix in AiDoc.ps1 to not translate some markdown syntax commands.


### Fixed
- Fixed issue #13. Safety settings were changed, and case handling was improved. This was not being validated, which resulted in an error.

[v0.6.5]: https://github.com/rrg92/powershai/releases/tag/v0.6.5
2 changes: 1 addition & 1 deletion powershai/powershai.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
PowerShellVersion = "3.0.0"
ModuleVersion = "0.6.4"
ModuleVersion = "0.6.5"
RootModule = 'powershai.psm1'
Author = 'Rodrigo Ribeiro Gomes'
Description = "Access AI capabilities directly from PowerShell"
Expand Down

0 comments on commit 6da0552

Please sign in to comment.