Skip to content

Commit

Permalink
Changelog, readme and Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dezoito committed Mar 23, 2024
1 parent 0fa70c0 commit dbd1bb2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [Version 0.2.0] - 2024-03-23

### Added

- Added a "request_timeout" parameter to settings that controls the amount of time (in seconds),
the application should wait for an inference call to complete before returning and error (for that individual call). This is useful as, IME, some combinations of parameters can make models hang.

## [Version 0.1.2] - 2024-03-14

### Added
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Check the [releases page](https://github.com/dezoito/ollama-grid-search/releases
- Refetching of single inference calls;
- Model selection can be filtered by name;
- List experimments which can be downloaded in JSON format;
- Configurable inference timeout;
- Custom default parameters and system prompts can be defined in settings:

[<img src="./screenshots/settings.png?raw=true" alt="Settings" width="720">](./screenshots/settings.png?raw=true)
Expand Down Expand Up @@ -75,7 +76,7 @@ You can list your experiments and download the corresponding logs in JSON:

- Grading results and filtering by grade
- Storing experiments and results in a local database
- Implementing limited concurrency for inference queries
- Implementing [limited concurrency](https://dezoito.github.io/2024/03/21/react-limited-concurrency.html) for inference queries
- UI/UX improvements
- Different interface for prompt A/B testing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ollama-grid-search",
"private": true,
"version": "0.1.2",
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grid-search-desktop"
version = "0.1.0"
version = "0.2.0"
description = "A Tauri App to perform Grid Search and A/B testing experiments on LLMs"
authors = ["dezoito"]
license = "Whatever is in the repo"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "ollama-grid-search",
"version": "0.1.2"
"version": "0.2.0"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit dbd1bb2

Please sign in to comment.