agentengine-sdk-python 0.6.2__tar.gz → 0.6.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentengine_sdk_python-0.6.2 → agentengine_sdk_python-0.6.4}/PKG-INFO +17 -15
- agentengine_sdk_python-0.6.4/README.md +24 -0
- agentengine_sdk_python-0.6.4/agentengine_sdk_python/__init__.py +3 -0
- {agentengine_sdk_python-0.6.2 → agentengine_sdk_python-0.6.4}/agentengine_sdk_python.egg-info/PKG-INFO +17 -15
- {agentengine_sdk_python-0.6.2 → agentengine_sdk_python-0.6.4}/agentengine_sdk_python.egg-info/SOURCES.txt +1 -0
- agentengine_sdk_python-0.6.4/agentengine_sdk_python.egg-info/requires.txt +1 -0
- agentengine_sdk_python-0.6.4/agentengine_sdk_python.egg-info/top_level.txt +1 -0
- {agentengine_sdk_python-0.6.2 → agentengine_sdk_python-0.6.4}/pyproject.toml +11 -6
- agentengine_sdk_python-0.6.2/README.md +0 -27
- agentengine_sdk_python-0.6.2/agentengine_sdk_python.egg-info/requires.txt +0 -1
- agentengine_sdk_python-0.6.2/agentengine_sdk_python.egg-info/top_level.txt +0 -1
- {agentengine_sdk_python-0.6.2 → agentengine_sdk_python-0.6.4}/agentengine_sdk_python.egg-info/dependency_links.txt +0 -0
- {agentengine_sdk_python-0.6.2 → agentengine_sdk_python-0.6.4}/setup.cfg +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentengine-sdk-python
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary: Kingsoft Cloud Agent Engine SDK
|
|
3
|
+
Version: 0.6.4
|
|
4
|
+
Summary: Kingsoft Cloud Agent Engine SDK alias package for ksadk
|
|
5
5
|
Author-email: KsADK Team <xiayu@kingsoft.com>
|
|
6
|
-
License-Expression:
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/kingsoftcloud/ksadk-python
|
|
8
8
|
Project-URL: Repository, https://github.com/kingsoftcloud/ksadk-python
|
|
9
|
+
Project-URL: Documentation, https://kingsoftcloud.github.io/ksadk-python/
|
|
9
10
|
Keywords: agent,langchain,langgraph,adk,kingsoft cloud,ai,llm
|
|
10
11
|
Classifier: Development Status :: 3 - Alpha
|
|
11
12
|
Classifier: Intended Audience :: Developers
|
|
@@ -13,34 +14,35 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
21
|
Requires-Python: >=3.10
|
|
17
22
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: ksadk==0.6.
|
|
23
|
+
Requires-Dist: ksadk==0.6.4
|
|
19
24
|
|
|
20
25
|
# agentengine-sdk-python
|
|
21
26
|
|
|
22
|
-
|
|
27
|
+
`agentengine-sdk-python` 是 [ksadk](https://pypi.org/project/ksadk/) 的兼容别名包。
|
|
23
28
|
|
|
24
|
-
|
|
29
|
+
安装本包会自动安装同版本的 `ksadk`:
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
31
|
+
```bash
|
|
32
|
+
pip install agentengine-sdk-python
|
|
33
|
+
```
|
|
29
34
|
|
|
30
|
-
|
|
35
|
+
也可以直接安装主包:
|
|
31
36
|
|
|
32
37
|
```bash
|
|
33
|
-
# 任选一种方式安装
|
|
34
|
-
pip install agentengine-sdk-python
|
|
35
|
-
# 或
|
|
36
38
|
pip install ksadk
|
|
37
39
|
```
|
|
38
40
|
|
|
39
|
-
|
|
41
|
+
命令行入口和 Python SDK 由 `ksadk` 提供:
|
|
40
42
|
|
|
41
43
|
```bash
|
|
42
44
|
agentengine --help
|
|
43
45
|
ksadk --help
|
|
44
46
|
```
|
|
45
47
|
|
|
46
|
-
|
|
48
|
+
文档:https://kingsoftcloud.github.io/ksadk-python/
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# agentengine-sdk-python
|
|
2
|
+
|
|
3
|
+
`agentengine-sdk-python` 是 [ksadk](https://pypi.org/project/ksadk/) 的兼容别名包。
|
|
4
|
+
|
|
5
|
+
安装本包会自动安装同版本的 `ksadk`:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install agentengine-sdk-python
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
也可以直接安装主包:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install ksadk
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
命令行入口和 Python SDK 由 `ksadk` 提供:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
agentengine --help
|
|
21
|
+
ksadk --help
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
文档:https://kingsoftcloud.github.io/ksadk-python/
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentengine-sdk-python
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary: Kingsoft Cloud Agent Engine SDK
|
|
3
|
+
Version: 0.6.4
|
|
4
|
+
Summary: Kingsoft Cloud Agent Engine SDK alias package for ksadk
|
|
5
5
|
Author-email: KsADK Team <xiayu@kingsoft.com>
|
|
6
|
-
License-Expression:
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/kingsoftcloud/ksadk-python
|
|
8
8
|
Project-URL: Repository, https://github.com/kingsoftcloud/ksadk-python
|
|
9
|
+
Project-URL: Documentation, https://kingsoftcloud.github.io/ksadk-python/
|
|
9
10
|
Keywords: agent,langchain,langgraph,adk,kingsoft cloud,ai,llm
|
|
10
11
|
Classifier: Development Status :: 3 - Alpha
|
|
11
12
|
Classifier: Intended Audience :: Developers
|
|
@@ -13,34 +14,35 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
21
|
Requires-Python: >=3.10
|
|
17
22
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: ksadk==0.6.
|
|
23
|
+
Requires-Dist: ksadk==0.6.4
|
|
19
24
|
|
|
20
25
|
# agentengine-sdk-python
|
|
21
26
|
|
|
22
|
-
|
|
27
|
+
`agentengine-sdk-python` 是 [ksadk](https://pypi.org/project/ksadk/) 的兼容别名包。
|
|
23
28
|
|
|
24
|
-
|
|
29
|
+
安装本包会自动安装同版本的 `ksadk`:
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
31
|
+
```bash
|
|
32
|
+
pip install agentengine-sdk-python
|
|
33
|
+
```
|
|
29
34
|
|
|
30
|
-
|
|
35
|
+
也可以直接安装主包:
|
|
31
36
|
|
|
32
37
|
```bash
|
|
33
|
-
# 任选一种方式安装
|
|
34
|
-
pip install agentengine-sdk-python
|
|
35
|
-
# 或
|
|
36
38
|
pip install ksadk
|
|
37
39
|
```
|
|
38
40
|
|
|
39
|
-
|
|
41
|
+
命令行入口和 Python SDK 由 `ksadk` 提供:
|
|
40
42
|
|
|
41
43
|
```bash
|
|
42
44
|
agentengine --help
|
|
43
45
|
ksadk --help
|
|
44
46
|
```
|
|
45
47
|
|
|
46
|
-
|
|
48
|
+
文档:https://kingsoftcloud.github.io/ksadk-python/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ksadk==0.6.4
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentengine_sdk_python
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentengine-sdk-python"
|
|
7
|
-
version = "0.6.
|
|
8
|
-
description = "Kingsoft Cloud Agent Engine SDK
|
|
7
|
+
version = "0.6.4"
|
|
8
|
+
description = "Kingsoft Cloud Agent Engine SDK alias package for ksadk"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
|
-
license = "
|
|
11
|
+
license = "Apache-2.0"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "KsADK Team", email = "xiayu@kingsoft.com"}
|
|
14
14
|
]
|
|
@@ -20,14 +20,19 @@ classifiers = [
|
|
|
20
20
|
"Programming Language :: Python :: 3.10",
|
|
21
21
|
"Programming Language :: Python :: 3.11",
|
|
22
22
|
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Programming Language :: Python :: 3.13",
|
|
24
|
+
"Programming Language :: Python :: 3.14",
|
|
25
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
26
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
23
27
|
]
|
|
24
28
|
dependencies = [
|
|
25
|
-
"ksadk==0.6.
|
|
29
|
+
"ksadk==0.6.4",
|
|
26
30
|
]
|
|
27
31
|
|
|
28
32
|
[project.urls]
|
|
29
33
|
Homepage = "https://github.com/kingsoftcloud/ksadk-python"
|
|
30
34
|
Repository = "https://github.com/kingsoftcloud/ksadk-python"
|
|
35
|
+
Documentation = "https://kingsoftcloud.github.io/ksadk-python/"
|
|
31
36
|
|
|
32
37
|
[tool.setuptools]
|
|
33
|
-
|
|
38
|
+
packages = ["agentengine_sdk_python"]
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# agentengine-sdk-python
|
|
2
|
-
|
|
3
|
-
**Kingsoft Cloud Agent Engine SDK** - 别名包
|
|
4
|
-
|
|
5
|
-
这是 [ksadk](https://pypi.org/project/ksadk/) 的别名包,安装后会自动安装对应版本的 ksadk。
|
|
6
|
-
|
|
7
|
-
当前版本:`0.6.2`
|
|
8
|
-
|
|
9
|
-
当前别名包依赖:`ksadk==0.6.2`
|
|
10
|
-
|
|
11
|
-
## 安装
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
# 任选一种方式安装
|
|
15
|
-
pip install agentengine-sdk-python
|
|
16
|
-
# 或
|
|
17
|
-
pip install ksadk
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## 使用
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
agentengine --help
|
|
24
|
-
ksadk --help
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Python SDK、命令行工具和更多文档请参考 [ksadk](https://github.com/kingsoftcloud/ksadk-python)。
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ksadk==0.6.2
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
File without changes
|
|
File without changes
|