Skip to content

Commit db5045c

Browse files
Release v0.3.3 🚀
1 parent 9f8b4de commit db5045c

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,28 @@ All notable changes to SDialog will be documented here.
44

55
---
66

7-
## [0.3.0] 2025-09-03 🚀
7+
## [0.3.3] 2025-10-30 🚀
8+
9+
### Added
10+
- **sdialog.server**:
11+
- New module to serve agents via an Ollama/OpenAI-compatible REST API (works with UIs like Open WebUI) (#92)
12+
- **sdialog**:
13+
- `Dialog.from_huggingface()` to load/download dialogues directly from Hugging Face datasets (#59)
14+
15+
### Changed
16+
- **sdialog.evaluation**:
17+
- LLM judge methods now accept additional user-defined template arguments (e.g., like `document` in [this example](https://sdialog.readthedocs.io/en/latest/examples/index.html#example-1-yes-no-relevance-judgment-with-reasoning)) (#86)
18+
- **sdialog.agents**:
19+
- Improved `Agent` initialization so agents can act as a proxy for external conversational systems (#90, fa1d8f3)
20+
21+
### Fixed
22+
- **sdialog.evaluation**:
23+
- Corrected Flesch Reading Ease and Gunning Fog score calculations (d1d4260)
24+
25+
26+
---
27+
28+
## [0.3.0] 2025-10-03 ✨
829

930
### Added
1031
- **sdialog**:

src/sdialog/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
logger = logging.getLogger(__name__)
3737

38-
__version__ = "0.3.2"
38+
__version__ = "0.3.3"
3939

4040

4141
def _get_dynamic_version() -> str:

0 commit comments

Comments
 (0)