crewplus 0.2.75__py3-none-any.whl → 0.2.77__py3-none-any.whl
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.
Potentially problematic release.
This version of crewplus might be problematic. Click here for more details.
- crewplus/vectorstores/milvus/vdb_service.py +6 -0
- {crewplus-0.2.75.dist-info → crewplus-0.2.77.dist-info}/METADATA +1 -2
- {crewplus-0.2.75.dist-info → crewplus-0.2.77.dist-info}/RECORD +6 -6
- {crewplus-0.2.75.dist-info → crewplus-0.2.77.dist-info}/WHEEL +0 -0
- {crewplus-0.2.75.dist-info → crewplus-0.2.77.dist-info}/entry_points.txt +0 -0
- {crewplus-0.2.75.dist-info → crewplus-0.2.77.dist-info}/licenses/LICENSE +0 -0
|
@@ -205,6 +205,12 @@ class VDBService(object):
|
|
|
205
205
|
# Return a copy without the default alias, as it will be added specifically for sync/async clients.
|
|
206
206
|
zilliz_args = self.connection_args.copy()
|
|
207
207
|
zilliz_args.pop('alias', None)
|
|
208
|
+
# 增加 gRPC keepalive 选项来加固连接
|
|
209
|
+
zilliz_args['channel_options'] = [
|
|
210
|
+
('grpc.keepalive_time_ms', 60000), # 每 60 秒发送一次 ping
|
|
211
|
+
('grpc.keepalive_timeout_ms', 20000), # 20 秒内没收到 pong 则认为连接断开
|
|
212
|
+
('grpc.enable_http_proxy', 0),
|
|
213
|
+
]
|
|
208
214
|
return zilliz_args
|
|
209
215
|
else:
|
|
210
216
|
self.logger.error(f"Unsupported vector store provider: {provider}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crewplus
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.77
|
|
4
4
|
Summary: Base services for CrewPlus AI applications
|
|
5
5
|
Author-Email: Tim Liu <tim@opsmateai.com>
|
|
6
6
|
License: MIT
|
|
@@ -14,7 +14,6 @@ Requires-Dist: langchain-openai>=0.3.24
|
|
|
14
14
|
Requires-Dist: google-genai>=1.21.1
|
|
15
15
|
Requires-Dist: langchain-milvus<0.3.0,>=0.2.1
|
|
16
16
|
Requires-Dist: langfuse<4.0.0,>=3.1.3
|
|
17
|
-
Requires-Dist: langchain-mcp-adapters>=0.1.4
|
|
18
17
|
Description-Content-Type: text/markdown
|
|
19
18
|
|
|
20
19
|
# CrewPlus
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
crewplus-0.2.
|
|
2
|
-
crewplus-0.2.
|
|
3
|
-
crewplus-0.2.
|
|
4
|
-
crewplus-0.2.
|
|
1
|
+
crewplus-0.2.77.dist-info/METADATA,sha256=pVrqwuNYPthJHQYYePGk8_rZxb3xbc5Aa-nyY_ZXm8g,5379
|
|
2
|
+
crewplus-0.2.77.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
|
|
3
|
+
crewplus-0.2.77.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
4
|
+
crewplus-0.2.77.dist-info/licenses/LICENSE,sha256=2_NHSHRTKB_cTcT_GXgcenOCtIZku8j343mOgAguTfc,1087
|
|
5
5
|
crewplus/__init__.py,sha256=m46HkZL1Y4toD619NL47Sn2Qe084WFFSFD7e6VoYKZc,284
|
|
6
6
|
crewplus/callbacks/__init__.py,sha256=YG7ieeb91qEjp1zF0-inEN7mjZ7yT_D2yzdWFT8Z1Ws,63
|
|
7
7
|
crewplus/callbacks/async_langfuse_handler.py,sha256=8_p7ctgcmDNQgF5vOqA47I0x-3GWsm7zioZcZHgedZk,7163
|
|
@@ -18,9 +18,9 @@ crewplus/utils/tracing_util.py,sha256=ew5VwjTKcY88P2sveIlGqmsNFR5OJ-DjKAHKQzBoTy
|
|
|
18
18
|
crewplus/vectorstores/milvus/__init__.py,sha256=OeYv2rdyG7tcREIjBJPyt2TbE54NvyeRoWMe7LwopRE,245
|
|
19
19
|
crewplus/vectorstores/milvus/milvus_schema_manager.py,sha256=-QRav-hzu-XWeJ_yKUMolal_EyMUspSg-nvh5sqlrlQ,11442
|
|
20
20
|
crewplus/vectorstores/milvus/schema_milvus.py,sha256=wwNpfqsKS0xeozZES40IvB0iNwUtpCall_7Hkg0dL1g,27223
|
|
21
|
-
crewplus/vectorstores/milvus/vdb_service.py,sha256=
|
|
21
|
+
crewplus/vectorstores/milvus/vdb_service.py,sha256=P1-j_4YgSnABcrsHqVXYJwCuMXm-q0FUwjprolrm_7A,37890
|
|
22
22
|
docs/GeminiChatModel.md,sha256=zZYyl6RmjZTUsKxxMiC9O4yV70MC4TD-IGUmWhIDBKA,8677
|
|
23
23
|
docs/ModelLoadBalancer.md,sha256=aGHES1dcXPz4c7Y8kB5-vsCNJjriH2SWmjBkSGoYKiI,4398
|
|
24
24
|
docs/VDBService.md,sha256=Dw286Rrf_fsi13jyD3Bo4Sy7nZ_G7tYm7d8MZ2j9hxk,9375
|
|
25
25
|
docs/index.md,sha256=3tlc15uR8lzFNM5WjdoZLw0Y9o1P1gwgbEnOdIBspqc,1643
|
|
26
|
-
crewplus-0.2.
|
|
26
|
+
crewplus-0.2.77.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|