diff --git a/CHANGELOG.md b/CHANGELOG.md index 30bd1f2..c5b89d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## v0.0.5 - 2024-02-17 + +- Feature: ollama support for ask, chat and play commands. + ## v0.0.4 - 2024-01-22 This release focuses on fixing `arey play` command on Windows/WSL2 and multiple diff --git a/README.md b/README.md index c658a19..ceb5201 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,12 @@ Arey is a simple large language model app. -✓ Chat with your favorite local models. CPU friendly 🍀 -✓ Ask the AI model with a single command. -✓ Supercharged in-context learning workflow ❤️ Edit your prompt in _any_ editor +🤖 Use any llama.cpp or ollama model. +💬 Chat with your favorite local models. CPU friendly 🍀 +🙋 Ask the AI model with a single command. +📋 Supercharged in-context learning workflow ❤️ Edit your prompt in _any_ editor and `arey` will generate a completion on save. -✓ No telemetry, no internet, nothing to sell. Dedicated to the public domain. +🔓 No telemetry, no internet, nothing to sell. Dedicated to the public domain. 🚧 Much more to come... See **Roadmap** below. @@ -113,7 +114,8 @@ If you've a GPU, try the following installation instead. - [x] Chat and task modes for interactive or batch queries - [x] Define new tasks with only a prompt, no code. See docs/samples directory for examples. -- [x] Markdown formatting for chat mode +- [x] Markdown formatting for chat mode. +- [x] Ollama support. - [ ] Command support in chat. E.g., logs, change model, copy, clear, etc. - [ ] Discover prompts from user directory - [ ] Manage prompts and create new interactively diff --git a/pyproject.toml b/pyproject.toml index b89f0d0..1d11b7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "arey" -version = "0.0.4" +version = "0.0.5" requires-python = '>=3.10' description = 'Simple large language model app.' authors = [{ name = 'codito', email = 'codito@codito.in' }]