Skip to content

Commit aab09c7

Browse files
fix(deps): change and fix deps versions (#382)
* fix(deps): change and fix deps versions * fix versions * update version * add docs
1 parent eb359e5 commit aab09c7

File tree

3 files changed

+60
-35
lines changed

3 files changed

+60
-35
lines changed

docs/docs/index.md

Lines changed: 32 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ hide:
1919
font-size: 1.2rem;
2020
color: #666;
2121
}
22+
23+
.buttons-row {
24+
display: flex;
25+
gap: 16px;
26+
justify-content: center;
27+
align-items: center;
28+
flex-wrap: wrap;
29+
}
2230
</style>
2331

2432
<div class="get-started-text">Volcengine Agent Development Kit</div>
@@ -31,21 +39,35 @@ hide:
3139

3240
!!! tip "快速开始"
3341
通过以下方式安装 VeADK:
34-
=== "稳定版"
42+
=== "Python"
3543

3644
```bash
45+
# 稳定版
3746
pip install veadk-python
47+
48+
# 主分支预览版
49+
pip install git+https://github.com/volcengine/veadk-python.git@main
3850
```
3951

40-
=== "抢先版"
52+
=== "Golang"
4153

4254
```bash
43-
pip install git+https://github.com/volcengine/veadk-python.git@main
55+
go get github.com/volcengine/veadk-go
4456
```
4557

58+
=== "Java"
59+
60+
```xml title="pom.xml"
61+
<dependency>
62+
<groupId>com.volcengine.veadk</groupId>
63+
<artifactId>veadk-java</artifactId>
64+
<version>0.0.1</version>
65+
</dependency>
66+
```
67+
4668
---
4769

48-
或者您可以使用 VeADK 提供的镜像仓库
70+
或者您可以使用 VeADK 提供的 Python 版镜像仓库
4971
=== "稳定版"
5072

5173
```
@@ -64,10 +86,14 @@ hide:
6486
veadk-cn-beijing.cr.volces.com/veadk/veadk-python:0.2.20
6587
```
6688

67-
<div class="grid" markdown>
89+
<div class="buttons-row" markdown>
90+
[veadk-python :fontawesome-brands-github:](https://github.com/volcengine/veadk-python){ .openai-button }
6891

69-
[快速开始 :fontawesome-solid-paper-plane:](quickstart.md){ .openai-button }
92+
[veadk-go :fontawesome-brands-github:](https://github.com/volcengine/veadk-go){ .openai-button }
7093

94+
[veadk-java :fontawesome-brands-github:](https://github.com/volcengine/veadk-java){ .openai-button }
95+
96+
[快速开始 :fontawesome-solid-paper-plane:](quickstart.md){ .openai-button }
7197
</div>
7298

7399
---

pyproject.toml

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "veadk-python"
3-
version = "0.2.34"
3+
version = "0.2.35"
44
description = "Volcengine agent development kit, integrations with Volcengine cloud services."
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -12,36 +12,35 @@ authors = [
1212
{name = "Meng Wang", email = "[email protected]"}
1313
]
1414
dependencies = [
15-
"pydantic-settings>=2.10.1", # Config management
16-
"a2a-sdk>=0.3.0", # For Google Agent2Agent protocol
17-
"deprecated>=1.2.18",
18-
"google-adk>=1.10.0", # For basic agent architecture
19-
"google-adk<=1.19.0", # For basic agent architecture
20-
"litellm>=1.74.3", # For model inference
21-
"loguru>=0.7.3", # For better logging
22-
"opentelemetry-exporter-otlp>=1.35.0",
15+
"pydantic-settings==2.10.1", # Config management
16+
"a2a-sdk==0.3.7", # For Google Agent2Agent protocol
17+
"deprecated==1.2.18",
18+
"google-adk==1.19.0", # For basic agent architecture
19+
"litellm==1.74.3", # For model inference
20+
"loguru==0.7.3", # For better logging
21+
"opentelemetry-exporter-otlp==1.37.0",
2322
"opentelemetry-instrumentation-logging>=0.56b0",
24-
"wrapt>=1.17.2", # For patching built-in functions
23+
"wrapt==1.17.2", # For patching built-in functions
2524
"openai<1.100", # For fix https://github.com/BerriAI/litellm/issues/13710
26-
"volcengine-python-sdk>=4.0.33", # For Volcengine API
27-
"volcengine>=1.0.193", # For Volcengine sign
28-
"agent-pilot-sdk>=0.1.2", # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
29-
"fastmcp>=2.11.3", # For running MCP
30-
"trustedmcp>=0.0.4", # For running TrustedMCP
31-
"cookiecutter>=2.6.0", # For cloud deploy
32-
"omegaconf>=2.3.0", # For agent builder
33-
"llama-index>=0.14.0",
34-
"llama-index-embeddings-openai-like>=0.2.2",
35-
"llama-index-llms-openai-like>=0.5.1",
36-
"llama-index-vector-stores-opensearch>=0.6.1",
37-
"psycopg2-binary>=2.9.10", # For PostgreSQL database (short term memory)
38-
"asyncpg>=0.29.0", # For async PostgreSQL database (short term memory)
39-
"pymysql>=1.1.1", # For MySQL database (short term memory)
40-
"aiomysql>=0.3.2", # For async MySQL database (short term memory)
25+
"volcengine-python-sdk==4.0.33", # For Volcengine API
26+
"volcengine==1.0.193", # For Volcengine sign
27+
"agent-pilot-sdk==0.1.2", # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
28+
"fastmcp==2.12.3", # For running MCP
29+
"trustedmcp==0.0.4", # For running TrustedMCP
30+
"cookiecutter==2.6.0", # For cloud deploy
31+
"omegaconf==2.3.0", # For agent builder
32+
"llama-index==0.14.0",
33+
"llama-index-embeddings-openai-like==0.2.2",
34+
"llama-index-llms-openai-like==0.5.1",
35+
"llama-index-vector-stores-opensearch==0.6.1",
36+
"psycopg2-binary==2.9.10", # For PostgreSQL database (short term memory)
37+
"asyncpg==0.29.0", # For async PostgreSQL database (short term memory)
38+
"pymysql==1.1.1", # For MySQL database (short term memory)
39+
"aiomysql==0.3.2", # For async MySQL database (short term memory)
4140
"opensearch-py==2.8.0",
42-
"filetype>=1.2.0",
43-
"vikingdb-python-sdk>=0.1.3",
44-
"agentkit-sdk-python"
41+
"filetype==1.2.0",
42+
"vikingdb-python-sdk==0.1.3",
43+
"agentkit-sdk-python==0.2.0"
4544
]
4645

4746
[project.scripts]

veadk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = "0.2.34"
15+
VERSION = "0.2.35"

0 commit comments

Comments
 (0)