Skip to content

Commit

Permalink
docs/release(v0.1.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
yalattas committed Jun 6, 2023
1 parent 324a67a commit 049c1fe
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [v0.1.3](#v0.1.3) - 2023-06-06 - latest - Beta

### Added
- OpenaiManager
- This introduces a dedicated sub-module for seamless OpenAI integration, improving modularity and organization of the codebase.
- supporting stream responses to prompts. This enables real-time access to partial responses as they're being generated.
- supporting direct prompt and response functionality to openAI

## [v0.0.5](#v0.0.5) - 2023-06-03 - Released - Beta

### Added
- cli version
- a new command allowing users to fetch current build version number

### Changed
- AI directory
- all resources are now coming from the cloud, enabling users to get latest updates of directory without the need of upgrading the cli version

## [v0.0.4](#0.0.4) - 2023-06-03 - Not released
- pip didn't include latest code for some reason and build seems to be missing critical parts

## [v0.0.3](#v0.0.3) - 2023-04-26 - Released - Alpha

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ $ mindmate [ARGUMENT] [OPTIONS] [OPTIONS] [OPTIONS] --help
$ mindmate configure
$ mindmate ai prompting list
$ mindmate chat -P openai \
-m text-davinci-003 \
-p "Act as a professional developer, provide best file structure for openAPI framework"
$ mindmate chat --platform openai \
--model text-davinci-003 \
--stream true \
--max-tokens 500 \
--prompt "Act as a professional developer, provide best file structure for fastAPI framework"
```

# compatibility
Expand Down
2 changes: 1 addition & 1 deletion mindmate/meta.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.0.5'
VERSION = '0.1.5'

0 comments on commit 049c1fe

Please sign in to comment.