Skip to content

Commit f2a34ff

Browse files
raychen911weimch
authored andcommitted
version: 发布1.1.13版本
1 parent 5d44031 commit f2a34ff

3 files changed

Lines changed: 28 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [1.1.13](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.13) (2026-07-17)
4+
5+
### Features
6+
7+
* Plan Mode: Added Claude Code-style Plan Mode (`setup_plan` / `PlanToolSet`), so agents can enter a design-and-approval phase before implementation. Supports model-initiated entry via `enter_plan_mode` and user/UI-driven entry through session state, with plan drafting (`update_plan_content`), clarifying questions, approval gating (`exit_plan_mode`), and write-tool restrictions while planning.
8+
* Tools: Added Tavily as a provider for `WebSearchTool` and `WebFetchTool`. Search can return LLM-ready answers plus optional image hits; fetch can use Tavily Extract as an alternative to direct HTTP fetching.
9+
* AG-UI: Expanded long-running tool discovery so nested `ToolSet` tools (including Plan Mode tools) are recognized during AG-UI runs, and tool names can be resolved from session history when the client payload only carries a tool call id.
10+
11+
### Bug Fixes
12+
13+
* AG-UI: Fixed session state updates from the AG-UI protocol not being persisted. State-change events are now appended as non-partial events so session services apply them correctly.
14+
* Runner: Avoided repeated string concatenation while accumulating streaming partial text. Partial chunks are kept as a list and joined only when cancellation cleanup needs the full text.
15+
* Examples: Fixed a few example agents (LangGraph and Mem0) so the full example pipeline can run more reliably.
16+
17+
### Docs
18+
19+
* Docs: Added English and Chinese Plan Mode guides, plus dedicated pages for TodoWrite, Task, and Goal tools.
20+
* Docs: Documented Tavily configuration and usage for web search and web fetch.
21+
* Examples: Added `plan_mode` and `plan_mode_with_goal_and_task` AG-UI examples for trying Plan Mode end to end.
22+
23+
### Internal
24+
25+
* CI: Added a GitHub Actions release workflow for publishing releases.
26+
* CI: Added code-review helper prompts and scripts under `.github/code_review/`.
27+
* CI: Added `pipeline_test/run_all_examples.sh` to drive the full examples pipeline more consistently.
28+
329
## [1.1.12](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.12) (2026-07-10)
430

531
### Features

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
def test_version():
1212
"""Test the version module."""
13-
assert __version__ == '1.1.12'
13+
assert __version__ == '1.1.13'

trpc_agent_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
This module defines the version information for TRPC Agent
1010
"""
1111

12-
__version__ = '1.1.12'
12+
__version__ = '1.1.13'

0 commit comments

Comments
 (0)