Skip to content

Commit a455098

Browse files
committed
version: 发布1.1.3版本
1 parent dd1aadf commit a455098

3 files changed

Lines changed: 18 additions & 2 deletions

File tree

CHANGELOG.md

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

3+
## [1.1.3](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.3) (2026-05-12)
4+
5+
### Features
6+
7+
* Model: Added an OpenAI-compatible adapter layer to isolate provider-specific behaviors, including DeepSeek v4 reasoning/format handling and hy3-preview tool-prompt parsing support.
8+
* Memory: Added MemPalace integration with `MemPalaceMemoryService` and `mempalace_tool`, plus related examples and documentation.
9+
* Code Execution: Added Cube/E2B sandbox executor and workspace runtime with optional dependency support and end-to-end example coverage.
10+
* Eval: Added support for evaluating the same metric across different LLMs.
11+
12+
### Bug Fixes
13+
14+
* Model: Fixed ToolPrompt streaming parsing so multiple tool calls in one response are preserved instead of only the last call.
15+
* Storage: Improved SQL storage compatibility by filtering empty content parts, fixing MySQL `DynamicPickleType` serialization, and stabilizing session timestamp updates.
16+
* Eval: Fixed judge-agent JSON output handling in the eval module.
17+
* CI: Added missing `e2b-code-interpreter` test dependency to prevent cube test collection failures.
18+
319
## [1.1.2.post1](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.2.post1) (2026-04-29)
420

521
### 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.2.post1'
13+
assert __version__ == '1.1.3'

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.2.post1'
12+
__version__ = '1.1.3'

0 commit comments

Comments
 (0)