Skip to content

Commit bdfa9d1

Browse files
committed
chore: v0.1.0 beta release
1 parent 58e82d6 commit bdfa9d1

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0] - 2026-01-20
11+
12+
First beta release. The library is now considered stable for production use in agentic RL training.
13+
14+
### Added
15+
16+
- **Tool Parse Error Tracking**: `SGLangModel` now tracks tool call parse errors via the `tool_parse_errors` attribute. This enables distinguishing between parse errors (malformed JSON, missing tool name) and execution errors (tool threw exception) during RL training metrics collection.
17+
18+
```python
19+
model = SGLangModel(tokenizer=tokenizer)
20+
# After generation:
21+
print(model.tool_parse_errors) # {"tool_name": count, ...}
22+
```
23+
24+
### Changed
25+
26+
- **Beta Status**: Upgraded from Alpha to Beta. The API is now stable and suitable for production RL training workloads.
27+
1028
## [0.0.3] - 2026-01-08
1129

1230
### Added

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "strands-sglang"
7-
version = "0.0.4.dev0"
7+
version = "0.1.0"
88
description = "SGLang model provider for Strands Agents SDK with Token-In/Token-Out (TITO) support for agentic RL training."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -14,7 +14,7 @@ authors = [
1414
]
1515
keywords = ["strands", "agents", "sglang", "llm", "ai", "reinforcement-learning", "rl", "agentic-rl"]
1616
classifiers = [
17-
"Development Status :: 3 - Alpha",
17+
"Development Status :: 4 - Beta",
1818
"Intended Audience :: Developers",
1919
"Intended Audience :: Science/Research",
2020
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)