agentengine-sdk-python 0.6.1__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.1 → agentengine_sdk_python-0.6.4}/PKG-INFO +18 -14
- 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.1 → agentengine_sdk_python-0.6.4}/agentengine_sdk_python.egg-info/PKG-INFO +18 -14
- {agentengine_sdk_python-0.6.1 → 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.1 → agentengine_sdk_python-0.6.4}/pyproject.toml +6 -9
- agentengine_sdk_python-0.6.1/README.md +0 -17
- agentengine_sdk_python-0.6.1/agentengine_sdk_python.egg-info/requires.txt +0 -1
- agentengine_sdk_python-0.6.1/agentengine_sdk_python.egg-info/top_level.txt +0 -1
- {agentengine_sdk_python-0.6.1 → agentengine_sdk_python-0.6.4}/agentengine_sdk_python.egg-info/dependency_links.txt +0 -0
- {agentengine_sdk_python-0.6.1 → agentengine_sdk_python-0.6.4}/setup.cfg +0 -0
|
@@ -1,16 +1,13 @@
|
|
|
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
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: Source, https://github.com/kingsoftcloud/ksadk-python
|
|
10
9
|
Project-URL: Documentation, https://kingsoftcloud.github.io/ksadk-python/
|
|
11
|
-
|
|
12
|
-
Project-URL: PyPI, https://pypi.org/project/agentengine-sdk-python/
|
|
13
|
-
Keywords: agent,agentengine,ksadk,langchain,langgraph,adk,kingsoft cloud,ai,llm
|
|
10
|
+
Keywords: agent,langchain,langgraph,adk,kingsoft cloud,ai,llm
|
|
14
11
|
Classifier: Development Status :: 3 - Alpha
|
|
15
12
|
Classifier: Intended Audience :: Developers
|
|
16
13
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -23,22 +20,29 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
23
20
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
21
|
Requires-Python: >=3.10
|
|
25
22
|
Description-Content-Type: text/markdown
|
|
26
|
-
Requires-Dist: ksadk==0.6.
|
|
23
|
+
Requires-Dist: ksadk==0.6.4
|
|
27
24
|
|
|
28
25
|
# agentengine-sdk-python
|
|
29
26
|
|
|
30
|
-
`agentengine-sdk-python`
|
|
27
|
+
`agentengine-sdk-python` 是 [ksadk](https://pypi.org/project/ksadk/) 的兼容别名包。
|
|
31
28
|
|
|
32
|
-
|
|
29
|
+
安装本包会自动安装同版本的 `ksadk`:
|
|
33
30
|
|
|
34
31
|
```bash
|
|
35
32
|
pip install agentengine-sdk-python
|
|
36
33
|
```
|
|
37
34
|
|
|
38
|
-
|
|
35
|
+
也可以直接安装主包:
|
|
39
36
|
|
|
40
|
-
|
|
37
|
+
```bash
|
|
38
|
+
pip install ksadk
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
命令行入口和 Python SDK 由 `ksadk` 提供:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
agentengine --help
|
|
45
|
+
ksadk --help
|
|
46
|
+
```
|
|
41
47
|
|
|
42
|
-
|
|
43
|
-
- Source: https://github.com/kingsoftcloud/ksadk-python
|
|
44
|
-
- PyPI: https://pypi.org/project/ksadk/
|
|
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,16 +1,13 @@
|
|
|
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
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: Source, https://github.com/kingsoftcloud/ksadk-python
|
|
10
9
|
Project-URL: Documentation, https://kingsoftcloud.github.io/ksadk-python/
|
|
11
|
-
|
|
12
|
-
Project-URL: PyPI, https://pypi.org/project/agentengine-sdk-python/
|
|
13
|
-
Keywords: agent,agentengine,ksadk,langchain,langgraph,adk,kingsoft cloud,ai,llm
|
|
10
|
+
Keywords: agent,langchain,langgraph,adk,kingsoft cloud,ai,llm
|
|
14
11
|
Classifier: Development Status :: 3 - Alpha
|
|
15
12
|
Classifier: Intended Audience :: Developers
|
|
16
13
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -23,22 +20,29 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
23
20
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
21
|
Requires-Python: >=3.10
|
|
25
22
|
Description-Content-Type: text/markdown
|
|
26
|
-
Requires-Dist: ksadk==0.6.
|
|
23
|
+
Requires-Dist: ksadk==0.6.4
|
|
27
24
|
|
|
28
25
|
# agentengine-sdk-python
|
|
29
26
|
|
|
30
|
-
`agentengine-sdk-python`
|
|
27
|
+
`agentengine-sdk-python` 是 [ksadk](https://pypi.org/project/ksadk/) 的兼容别名包。
|
|
31
28
|
|
|
32
|
-
|
|
29
|
+
安装本包会自动安装同版本的 `ksadk`:
|
|
33
30
|
|
|
34
31
|
```bash
|
|
35
32
|
pip install agentengine-sdk-python
|
|
36
33
|
```
|
|
37
34
|
|
|
38
|
-
|
|
35
|
+
也可以直接安装主包:
|
|
39
36
|
|
|
40
|
-
|
|
37
|
+
```bash
|
|
38
|
+
pip install ksadk
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
命令行入口和 Python SDK 由 `ksadk` 提供:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
agentengine --help
|
|
45
|
+
ksadk --help
|
|
46
|
+
```
|
|
41
47
|
|
|
42
|
-
|
|
43
|
-
- Source: https://github.com/kingsoftcloud/ksadk-python
|
|
44
|
-
- PyPI: https://pypi.org/project/ksadk/
|
|
48
|
+
文档:https://kingsoftcloud.github.io/ksadk-python/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ksadk==0.6.4
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentengine_sdk_python
|
|
@@ -1,18 +1,18 @@
|
|
|
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
11
|
license = "Apache-2.0"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "KsADK Team", email = "xiayu@kingsoft.com"}
|
|
14
14
|
]
|
|
15
|
-
keywords = ["agent", "
|
|
15
|
+
keywords = ["agent", "langchain", "langgraph", "adk", "kingsoft cloud", "ai", "llm"]
|
|
16
16
|
classifiers = [
|
|
17
17
|
"Development Status :: 3 - Alpha",
|
|
18
18
|
"Intended Audience :: Developers",
|
|
@@ -26,16 +26,13 @@ classifiers = [
|
|
|
26
26
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
27
27
|
]
|
|
28
28
|
dependencies = [
|
|
29
|
-
"ksadk==0.6.
|
|
29
|
+
"ksadk==0.6.4",
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
33
33
|
Homepage = "https://github.com/kingsoftcloud/ksadk-python"
|
|
34
34
|
Repository = "https://github.com/kingsoftcloud/ksadk-python"
|
|
35
|
-
Source = "https://github.com/kingsoftcloud/ksadk-python"
|
|
36
35
|
Documentation = "https://kingsoftcloud.github.io/ksadk-python/"
|
|
37
|
-
Issues = "https://github.com/kingsoftcloud/ksadk-python/issues"
|
|
38
|
-
PyPI = "https://pypi.org/project/agentengine-sdk-python/"
|
|
39
36
|
|
|
40
37
|
[tool.setuptools]
|
|
41
|
-
packages = []
|
|
38
|
+
packages = ["agentengine_sdk_python"]
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# agentengine-sdk-python
|
|
2
|
-
|
|
3
|
-
`agentengine-sdk-python` is a compatibility alias package for KSADK.
|
|
4
|
-
|
|
5
|
-
Install this package when you want the historical Agent Engine SDK package name:
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pip install agentengine-sdk-python
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
It installs `ksadk==0.6.1`, including the `agentengine` command line entry point.
|
|
12
|
-
|
|
13
|
-
For source code, documentation, issues, and releases, use the KSADK project:
|
|
14
|
-
|
|
15
|
-
- Documentation: https://kingsoftcloud.github.io/ksadk-python/
|
|
16
|
-
- Source: https://github.com/kingsoftcloud/ksadk-python
|
|
17
|
-
- PyPI: https://pypi.org/project/ksadk/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ksadk==0.6.1
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
File without changes
|
|
File without changes
|