Skip to content

Commit 72f66ae

Browse files
author
raylchen
committed
version: 发布1.0.0版本
1 parent b8a7781 commit 72f66ae

5 files changed

Lines changed: 23 additions & 239 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
# Change Log
1+
# Changelog
2+
3+
## [1.0.0](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.0.0) (2026-04-06)
4+
5+
### Features
6+
7+
* Unified Agent framework with `LlmAgent`, `LangGraphAgent` and `TransferAgent`
8+
* Multi-agent orchestration with built-in `Chain`, `Parallel`, and `Cycle` patterns, plus Team and nested Team collaboration
9+
* Human-in-the-loop workflows with pause, review, and resume support for long-running tasks
10+
* Rich tool ecosystem including built-in file/shell tools, MCP tools, LangChain tools, and extensible third-party integrations
11+
* Extensible Skill system with local and HTTP distribution, dynamic loading, timeout control, and sandbox execution
12+
* Code execution support with async runtime and sandbox/container execution options
13+
* Session and memory services with in-memory, Redis, and SQL backends, including filtering, summarization, and scheduled cleanup
14+
* RAG and knowledge capabilities through `LangchainKnowledge` with loaders, splitters, embedders, vector stores, retrievers, and prompt templates
15+
* Evaluation framework with trajectory and response quality assessment, LLM-judge metrics, parallel evaluation, and JSON reporting
16+
* Service and protocol integrations for A2A, AG-UI, and OpenClaw runtime scenarios
17+
* OpenClaw runtime capabilities for gateway/chat/ui/deps workflows with pluggable channels, tools, skills, session and memory integration
18+
* OpenClaw skill dependency management with profile-based inspection and install planning for common runtime environments
19+
* Observability via tracing support, including end-to-end execution flow, tool-call traces, and cancellation traces
20+
* Developer experience support with practical examples and DebugServer for local development and validation

dist_pkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ pip3 install twine
1919
python -m build
2020

2121

22-
twine upload dist/* -r tencent
22+
twine upload --repository pypi dist/*
2323

2424

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ description = "Python LLM agent framework with multi-model support (OpenAI, Anth
1212
readme = "README.md"
1313
requires-python = ">=3.10"
1414
license = {text = "Apache-2.0"}
15-
authors = [
16-
{name = "Tencent", email = "team@tencent.com"}
17-
]
15+
authors = [{ name = "Tencent", email = "raylchen@tencent.com" }]
1816
keywords = ["trpc", "agent", "llm", "ai", "langchain", "langgraph", "mcp", "a2a", "fastapi", "multi-agent", "tool-calling"]
1917
classifiers = [
2018
"Development Status :: 3 - Alpha",

run_examples_from_streaming_tool_complex.py

Lines changed: 0 additions & 233 deletions
This file was deleted.

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__ = '0.1.0'
12+
__version__ = '1.0.0'

0 commit comments

Comments
 (0)