From c59b50dc6ed0049e5e8709025565e256079201fd Mon Sep 17 00:00:00 2001 From: dezoito Date: Sun, 8 Dec 2024 10:42:20 -0300 Subject: [PATCH] Updating license field and version info for v0.8.0 --- CHANGELOG.md | 7 +++++++ package.json | 3 ++- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- todo.md | 15 +++++++++++---- 5 files changed, 22 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 439e3c4..b04239e 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.8.0] - 2024-12-08 + +### Changed + +- Experiments are stored in a database. File system is not used anymore +- Minor UI improvements in the Experiment selecion UI + ## [Version 0.7.0] - 2024-11-24 ### Added diff --git a/package.json b/package.json index c030d2e..3e6a979 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,9 @@ { "name": "ollama-grid-search", "private": true, - "version": "0.7.0", + "version": "0.8.0", "type": "module", + "license": "MIT", "scripts": { "dev": "vite", "build": "tsc && vite build", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 436ab19..febba67 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grid-search-desktop" -version = "0.7.0" +version = "0.8.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 75fe039..2749198 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -7,7 +7,7 @@ }, "package": { "productName": "ollama-grid-search", - "version": "0.7.0" + "version": "0.8.0" }, "tauri": { "allowlist": { diff --git a/todo.md b/todo.md index 1b8ba58..6d0ed79 100644 --- a/todo.md +++ b/todo.md @@ -121,10 +121,19 @@ https://github.com/tauri-apps/plugins-workspace/tree/v1/plugins/single-instance --- v0.6.2 [ok] - The "refetch" button must be shown when there was an error in the inference call. +--- v0.7.0 +[ok] - Connect app with SQLite DB for prompts and experiments +[ok] - Add prompt archive/library +[ok] - Prompt inputs can trigger autocomplete by starting with "/" + +--- v0.8.0 +[ok] - Store experiments in DB +[ok] - Rewrite experiment UI so that it uses the DB records, instead of files +[ok] - Uses Custom scrollbar in LogSelector + + --- -- Test prompt sample migrations -- Store experiments in the all new shiny DB, instead of files. - Diff inference params when displaying results - Add variable support when entering prompts - Check issue https://github.com/dezoito/ollama-grid-search/issues/47 @@ -138,8 +147,6 @@ https://github.com/tauri-apps/plugins-workspace/tree/v1/plugins/single-instance - Build options straight from config: https://github.com/pepperoni21/ollama-rs/blob/master/examples/options_from_json.rs - Convert code snippets to markdown in responses? (react-markdown didn't work well to filter code) -- Plan on saving results to SQLite -- Add a "default prompt" setting to settings? - Add a way to filter visible results by params, or length or throughput?