diff --git a/CHANGELOG.md b/CHANGELOG.md index fc8a43e..e45f9f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 46c544a..377e33e 100644 --- a/README.md +++ b/README.md @@ -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: [Settings](./screenshots/settings.png?raw=true) @@ -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 diff --git a/package.json b/package.json index 8965b48..b3aa54a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ollama-grid-search", "private": true, - "version": "0.1.2", + "version": "0.2.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 15757cd..7f8a88b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -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" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index f4b143a..15716a3 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -7,7 +7,7 @@ }, "package": { "productName": "ollama-grid-search", - "version": "0.1.2" + "version": "0.2.0" }, "tauri": { "allowlist": {