crewplus 0.2.50__tar.gz → 0.2.51__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.

Files changed (24) hide show
  1. {crewplus-0.2.50 → crewplus-0.2.51}/PKG-INFO +1 -1
  2. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/vectorstores/milvus/vdb_service.py +2 -1
  3. {crewplus-0.2.50 → crewplus-0.2.51}/pyproject.toml +1 -1
  4. {crewplus-0.2.50 → crewplus-0.2.51}/LICENSE +0 -0
  5. {crewplus-0.2.50 → crewplus-0.2.51}/README.md +0 -0
  6. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/__init__.py +0 -0
  7. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/callbacks/__init__.py +0 -0
  8. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/callbacks/async_langfuse_handler.py +0 -0
  9. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/services/__init__.py +0 -0
  10. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/services/azure_chat_model.py +0 -0
  11. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/services/gemini_chat_model.py +0 -0
  12. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/services/init_services.py +0 -0
  13. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/services/model_load_balancer.py +0 -0
  14. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/services/tracing_manager.py +0 -0
  15. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/utils/__init__.py +0 -0
  16. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/utils/schema_action.py +0 -0
  17. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/utils/schema_document_updater.py +0 -0
  18. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/vectorstores/milvus/__init__.py +0 -0
  19. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/vectorstores/milvus/milvus_schema_manager.py +0 -0
  20. {crewplus-0.2.50 → crewplus-0.2.51}/crewplus/vectorstores/milvus/schema_milvus.py +0 -0
  21. {crewplus-0.2.50 → crewplus-0.2.51}/docs/GeminiChatModel.md +0 -0
  22. {crewplus-0.2.50 → crewplus-0.2.51}/docs/ModelLoadBalancer.md +0 -0
  23. {crewplus-0.2.50 → crewplus-0.2.51}/docs/VDBService.md +0 -0
  24. {crewplus-0.2.50 → crewplus-0.2.51}/docs/index.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: crewplus
3
- Version: 0.2.50
3
+ Version: 0.2.51
4
4
  Summary: Base services for CrewPlus AI applications
5
5
  Author-Email: Tim Liu <tim@opsmateai.com>
6
6
  License: MIT
@@ -115,7 +115,6 @@ class VDBService(object):
115
115
  """
116
116
  self.logger = logger or logging.getLogger(__name__)
117
117
  self.collection_schema = None
118
- self.schema_manager = MilvusSchemaManager(client=self.client, async_client=self.aclient)
119
118
 
120
119
  if settings:
121
120
  self.settings = settings
@@ -153,6 +152,8 @@ class VDBService(object):
153
152
  self.schema = schema
154
153
  self.index_params = self.settings.get("index_params")
155
154
 
155
+ self.schema_manager = MilvusSchemaManager(client=self._client, async_client=self._async_client)
156
+
156
157
  self.logger.info("VDBService initialized successfully")
157
158
 
158
159
  def _get_milvus_client_args(self, provider: str) -> dict:
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "crewplus"
9
- version = "0.2.50"
9
+ version = "0.2.51"
10
10
  description = "Base services for CrewPlus AI applications"
11
11
  authors = [
12
12
  { name = "Tim Liu", email = "tim@opsmateai.com" },
File without changes
File without changes
File without changes
File without changes