xparse-client 0.2.12__tar.gz → 0.2.14__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.
- {xparse_client-0.2.12/xparse_client.egg-info → xparse_client-0.2.14}/PKG-INFO +2 -2
- {xparse_client-0.2.12 → xparse_client-0.2.14}/example/run_pipeline.py +7 -7
- {xparse_client-0.2.12 → xparse_client-0.2.14}/pyproject.toml +2 -2
- {xparse_client-0.2.12 → xparse_client-0.2.14/xparse_client.egg-info}/PKG-INFO +2 -2
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client.egg-info/requires.txt +3 -1
- {xparse_client-0.2.12 → xparse_client-0.2.14}/LICENSE +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/README.md +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/example/run_pipeline_test.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/setup.cfg +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client/__init__.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client/pipeline/__init__.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client/pipeline/config.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client/pipeline/destinations.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client/pipeline/pipeline.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client/pipeline/sources.py +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client.egg-info/SOURCES.txt +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client.egg-info/dependency_links.txt +0 -0
- {xparse_client-0.2.12 → xparse_client-0.2.14}/xparse_client.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xparse-client
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.14
|
|
4
4
|
Summary: 面向Agent和RAG的新一代文档处理 AI Infra
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://gitlab.intsig.net/xparse1/xparse-pipeline
|
|
@@ -11,7 +11,7 @@ Description-Content-Type: text/markdown
|
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Requires-Dist: boto3
|
|
13
13
|
Requires-Dist: pymilvus
|
|
14
|
-
Requires-Dist: milvus-lite
|
|
14
|
+
Requires-Dist: milvus-lite; sys_platform != "win32"
|
|
15
15
|
Requires-Dist: requests
|
|
16
16
|
Requires-Dist: pysmb
|
|
17
17
|
Requires-Dist: qdrant-client
|
|
@@ -215,13 +215,13 @@ def run_with_manual_setup():
|
|
|
215
215
|
# )
|
|
216
216
|
|
|
217
217
|
destination = S3Destination(
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
218
|
+
endpoint='https://obs.cn-east-3.myhuaweicloud.com',
|
|
219
|
+
access_key='HPUAFT3D1Q6O6UUN1RWQ',
|
|
220
|
+
secret_key='4zIk8x37nZiDS9P585BTFCWsOSo5G7ok1yRWtEA1',
|
|
221
|
+
bucket='xparse',
|
|
222
|
+
prefix='json/',
|
|
223
|
+
region='cn-east-3'
|
|
224
|
+
) # 华为云
|
|
225
225
|
|
|
226
226
|
# 使用新的 stages 格式创建配置
|
|
227
227
|
stages = [
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "xparse-client"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.14"
|
|
8
8
|
description = "面向Agent和RAG的新一代文档处理 AI Infra"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -15,7 +15,7 @@ requires-python = ">=3.8"
|
|
|
15
15
|
dependencies = [
|
|
16
16
|
"boto3",
|
|
17
17
|
"pymilvus",
|
|
18
|
-
"milvus-lite",
|
|
18
|
+
"milvus-lite; sys_platform != 'win32'",
|
|
19
19
|
"requests",
|
|
20
20
|
"pysmb",
|
|
21
21
|
"qdrant-client"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xparse-client
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.14
|
|
4
4
|
Summary: 面向Agent和RAG的新一代文档处理 AI Infra
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://gitlab.intsig.net/xparse1/xparse-pipeline
|
|
@@ -11,7 +11,7 @@ Description-Content-Type: text/markdown
|
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Requires-Dist: boto3
|
|
13
13
|
Requires-Dist: pymilvus
|
|
14
|
-
Requires-Dist: milvus-lite
|
|
14
|
+
Requires-Dist: milvus-lite; sys_platform != "win32"
|
|
15
15
|
Requires-Dist: requests
|
|
16
16
|
Requires-Dist: pysmb
|
|
17
17
|
Requires-Dist: qdrant-client
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|