|
1 | | -# Release Notes v0.2.0 |
| 1 | +# quickthink v0.2.1 |
2 | 2 |
|
3 | | -Date: 2026-02-18T18:43:38+00:00 |
| 3 | +Released: 2026-08-04 |
4 | 4 |
|
5 | | -## Summary |
6 | | -- Describe the user-visible improvements in this release. |
| 5 | +## What quickthink is for |
7 | 6 |
|
8 | | -## Evidence Links |
9 | | -- Eval report: unavailable |
10 | | -- Compatibility snapshot: unavailable |
| 7 | +quickthink is a local-first CLI and Python library for shaping Ollama-backed LLM calls. It uses routing and a compact plan-then-answer scaffold for prompts that appear multi-step, while sending simpler prompts directly to the selected local model. |
11 | 8 |
|
12 | | -## Compatibility Snapshot |
13 | | -- No compatibility snapshot found. |
| 9 | +## What changed |
14 | 10 |
|
15 | | -## Benchmark Notes |
16 | | -Paste key metrics from the eval report here (win-rate, p50/p95 overhead, failure breakdown). |
| 11 | +- Prepared the first PyPI release path with a tag/version guard, distribution build, and package metadata validation before the protected trusted-publisher job can run. |
| 12 | +- Added clear install guidance for both the source-only and post-PyPI states. |
| 13 | +- Added `quickthink --version` for installed-package identification. |
| 14 | +- Synced package, citation, and Zenodo metadata to `0.2.1`. |
17 | 15 |
|
18 | | -## Breaking Changes |
19 | | -- None (or list explicitly). |
| 16 | +There are no inference-path changes in this release and no general model-quality improvement claim. |
20 | 17 |
|
21 | | -## Upgrade Notes |
22 | | -- Mention CLI/API changes and migration steps if any. |
| 18 | +## Install and first result |
| 19 | + |
| 20 | +After the PyPI publish job for this release has succeeded: |
| 21 | + |
| 22 | +```bash |
| 23 | +python -m pip install "quickthink==0.2.1" |
| 24 | +ollama pull qwen2.5:1.5b |
| 25 | +quickthink ask "Give me a 3-step plan to learn SQL basics" --model qwen2.5:1.5b |
| 26 | +``` |
| 27 | + |
| 28 | +Before publication, install directly from the repository instead: |
| 29 | + |
| 30 | +```bash |
| 31 | +python -m pip install "quickthink @ git+https://github.com/hermes-labs-ai/quickthink.git" |
| 32 | +``` |
| 33 | + |
| 34 | +## Requirements and limits |
| 35 | + |
| 36 | +- Python 3.9 or later, a running local [Ollama](https://ollama.com/) service, and a pulled model are required. |
| 37 | +- The supported model profiles are `qwen2.5:1.5b`, `mistral:7b`, and `gemma3:27b`; other models may run but are untuned. |
| 38 | +- quickthink is not a hosted API, training framework, or general agent-orchestration platform. It does not verify answer correctness; results remain model- and task-dependent. |
| 39 | + |
| 40 | +## Links |
| 41 | + |
| 42 | +- [Quickstart](https://github.com/hermes-labs-ai/quickthink#5-minute-quickstart) |
| 43 | +- [Known limitations](https://github.com/hermes-labs-ai/quickthink/blob/main/docs/KNOWN_LIMITATIONS.md) |
| 44 | +- [Release process](https://github.com/hermes-labs-ai/quickthink/blob/main/docs/release/RELEASE_PROCESS.md) |
0 commit comments