You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Changelog
2
2
3
+
## [v0.2.12] - 2025-06-03
4
+
5
+
- pipelex cli: Split `pipelex init` into 2 separate functions: `pipelex init-libraries` and `pipelex init-config`
6
+
- Fixed the inheritance config manager method
7
+
- Rename Mission to Pipeline
8
+
- Enable to start a pipeline and let in run in the background, getting it's run id, but not waiting for the output
9
+
-`Makefile`: avoid defaulting pytest to verbose. Setup target `make test-xdist` = Run unit tests with `xdist`, make it the default for shorthand `make t`. The old `make t` is now `make tp` (test-with-prints)
10
+
- Added `mistral-small-3.1` and `qwen3:8b`
11
+
- Fix template pre-processor: don't try and substitute a dollar numerical like $10 or @25
12
+
- Refactor with less "OpenAI" naming for non-openai stuff that just uses the OpenAI SDK
13
+
3
14
## [v0.2.11] - 2025-06-02
4
15
5
16
- HotFix for v0.2.10 👇 regarding the new pipelex/pipelex_init.toml`
@@ -13,7 +24,7 @@
13
24
**Major Model Additions** - Claude 4 (Opus & Sonnet), Grok-3, and GPT-4 image generation are now in the house.
14
25
15
26
### Pipeline Base Library update
16
-
-**New pipe** - `extract_page_contents_and_views_from_pdf`transfered from cookbook to base library (congrats on the promotion!). This pipe extracts text, linked images, **AND** page_view images (rendered pages) - it's very useful if you want to use Vision in follow-up pipes
27
+
-**New pipe** - `extract_page_contents_and_views_from_pdf`transferred from cookbook to base library (congrats on the promotion!). This pipe extracts text, linked images, **AND** page_view images (rendered pages) - it's very useful if you want to use Vision in follow-up pipes
17
28
18
29
### Added
19
30
@@ -56,16 +67,16 @@
56
67
57
68
- Include `pyproject.toml` inside the project build.
58
69
- Fix `ImggEngineFactory`: image generation (imgg) handle required format is `platform/model_name`
59
-
- pipelex cli: Added `list-pipes` method that can list all the availables pipes with descriptions.
70
+
- pipelex cli: Added `list-pipes` method that can list all the available pipes along with their descriptions.
60
71
- Use a minimum version for `uv` instead of a fixed version
61
72
- Implement `AGENTS.md` for Codex
62
73
- Add tests for some of the `tools.misc`
63
74
- pipelex cli: Rename `pipelex run-setup` to `pipelex validate`
64
75
65
76
## [v0.2.8] - 2025-05-28
66
77
67
-
-Defaults to `uv`
68
-
- Simplify llm provider config: All the API keys, urls, and regions are to be set in`.env`.
78
+
-Replaced `poetry` by `uv` for dependency management.
79
+
- Simplify llm provider config: All the API keys, urls, and regions now live in the`.env`.
69
80
- Added logging level `OFF`, prevents any log from hitting the console
$(VENV_PYTEST) --exitfirst -m "inference and not imgg" -s -k "$(TEST)"$(if$(filter 2,$(VERBOSE)),-vv,$(if$(filter 3,$(VERBOSE)),-vvv,-v));\
276
+
$(VENV_PYTEST) --exitfirst -m "inference and not imgg" -s -k "$(TEST)"$(if$(filter1,$(VERBOSE)),-v,$(if$(filter2,$(VERBOSE)),-vv,$(if$(filter 3,$(VERBOSE)),-vvv,)));\
261
277
else\
262
-
$(VENV_PYTEST) --exitfirst -m "inference and not imgg" -s $(if$(filter 2,$(VERBOSE)),-vv,$(if$(filter 3,$(VERBOSE)),-vvv,-v));\
278
+
$(VENV_PYTEST) --exitfirst -m "inference and not imgg" -s $(if$(filter1,$(VERBOSE)),-v,$(if$(filter2,$(VERBOSE)),-vv,$(if$(filter 3,$(VERBOSE)),-vvv,)));\
0 commit comments