crewplus 0.2.12__tar.gz → 0.2.13__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.12 → crewplus-0.2.13}/PKG-INFO +1 -1
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/vectorstores/milvus/milvus_schema_manager.py +1 -2
- {crewplus-0.2.12 → crewplus-0.2.13}/pyproject.toml +1 -1
- {crewplus-0.2.12 → crewplus-0.2.13}/LICENSE +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/README.md +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/__init__.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/services/__init__.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/services/gemini_chat_model.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/services/init_services.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/services/model_load_balancer.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/utils/__init__.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/utils/schema_action.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/utils/schema_document_updater.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/vectorstores/milvus/__init__.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/vectorstores/milvus/schema_milvus.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/crewplus/vectorstores/milvus/vdb_service.py +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/docs/GeminiChatModel.md +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/docs/ModelLoadBalancer.md +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/docs/VDBService.md +0 -0
- {crewplus-0.2.12 → crewplus-0.2.13}/docs/index.md +0 -0
|
@@ -112,8 +112,7 @@ class MilvusSchemaManager:
|
|
|
112
112
|
is_primary = field_info.get('is_primary', False)
|
|
113
113
|
auto_id = field_info.get('auto_id', False)
|
|
114
114
|
nullable = field_info.get('nullable', False)
|
|
115
|
-
|
|
116
|
-
schema.add_field(field_name=field_name, datatype=DataType.INT64, is_primary=is_primary, auto_id=auto_id, nullable=nullable, default_value=default_value)
|
|
115
|
+
schema.add_field(field_name=field_name, datatype=DataType.INT64, is_primary=is_primary, auto_id=auto_id, nullable=nullable)
|
|
117
116
|
elif field_type == "FLOAT":
|
|
118
117
|
nullable = field_info.get('nullable', True)
|
|
119
118
|
schema.add_field(field_name=field_name, datatype=DataType.FLOAT, nullable=nullable)
|
|
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
|