crewplus 0.2.60__tar.gz → 0.2.61__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.
Potentially problematic release.
This version of crewplus might be problematic. Click here for more details.
- {crewplus-0.2.60 → crewplus-0.2.61}/PKG-INFO +1 -1
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/vectorstores/milvus/vdb_service.py +2 -1
- {crewplus-0.2.60 → crewplus-0.2.61}/pyproject.toml +1 -1
- {crewplus-0.2.60 → crewplus-0.2.61}/LICENSE +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/README.md +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/__init__.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/callbacks/__init__.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/callbacks/async_langfuse_handler.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/services/__init__.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/services/azure_chat_model.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/services/gemini_chat_model.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/services/init_services.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/services/model_load_balancer.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/services/tracing_manager.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/utils/__init__.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/utils/schema_action.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/utils/schema_document_updater.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/vectorstores/milvus/__init__.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/vectorstores/milvus/milvus_schema_manager.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/crewplus/vectorstores/milvus/schema_milvus.py +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/docs/GeminiChatModel.md +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/docs/ModelLoadBalancer.md +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/docs/VDBService.md +0 -0
- {crewplus-0.2.60 → crewplus-0.2.61}/docs/index.md +0 -0
|
@@ -599,7 +599,8 @@ class VDBService(object):
|
|
|
599
599
|
# After successful synchronous initialization, we hot-swap the alias on the
|
|
600
600
|
# ASYNCHRONOUS client to ensure future async operations use the correct connection.
|
|
601
601
|
self.logger.info(f"Swapping to async alias for instance of collection {collection_name}")
|
|
602
|
-
|
|
602
|
+
# DO NOT get the async client here, get it outside this function
|
|
603
|
+
#await self._get_or_create_async_client()
|
|
603
604
|
vdb.aclient._using = self.async_alias
|
|
604
605
|
|
|
605
606
|
self._async_instances[collection_name] = vdb
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|