Skip to content

Commit

Permalink
Updating license field and version info for v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dezoito committed Dec 8, 2024
1 parent 3bf7e59 commit c59b50d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 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.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
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
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.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"
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.7.0"
"version": "0.8.0"
},
"tauri": {
"allowlist": {
Expand Down
15 changes: 11 additions & 4 deletions todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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?

Expand Down

0 comments on commit c59b50d

Please sign in to comment.