crewplus 0.2.21__tar.gz → 0.2.23__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 (21) hide show
  1. {crewplus-0.2.21 → crewplus-0.2.23}/PKG-INFO +1 -4
  2. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/services/model_load_balancer.py +1 -0
  3. {crewplus-0.2.21 → crewplus-0.2.23}/pyproject.toml +4 -4
  4. {crewplus-0.2.21 → crewplus-0.2.23}/LICENSE +0 -0
  5. {crewplus-0.2.21 → crewplus-0.2.23}/README.md +0 -0
  6. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/__init__.py +0 -0
  7. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/services/__init__.py +0 -0
  8. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/services/azure_chat_model.py +0 -0
  9. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/services/gemini_chat_model.py +0 -0
  10. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/services/init_services.py +0 -0
  11. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/utils/__init__.py +0 -0
  12. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/utils/schema_action.py +0 -0
  13. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/utils/schema_document_updater.py +0 -0
  14. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/vectorstores/milvus/__init__.py +0 -0
  15. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/vectorstores/milvus/milvus_schema_manager.py +0 -0
  16. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/vectorstores/milvus/schema_milvus.py +0 -0
  17. {crewplus-0.2.21 → crewplus-0.2.23}/crewplus/vectorstores/milvus/vdb_service.py +0 -0
  18. {crewplus-0.2.21 → crewplus-0.2.23}/docs/GeminiChatModel.md +0 -0
  19. {crewplus-0.2.21 → crewplus-0.2.23}/docs/ModelLoadBalancer.md +0 -0
  20. {crewplus-0.2.21 → crewplus-0.2.23}/docs/VDBService.md +0 -0
  21. {crewplus-0.2.21 → crewplus-0.2.23}/docs/index.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: crewplus
3
- Version: 0.2.21
3
+ Version: 0.2.23
4
4
  Summary: Base services for CrewPlus AI applications
5
5
  Author-Email: Tim Liu <tim@opsmateai.com>
6
6
  License: MIT
@@ -12,9 +12,6 @@ Requires-Python: <4.0,>=3.11
12
12
  Requires-Dist: langchain==0.3.25
13
13
  Requires-Dist: langchain-openai==0.3.24
14
14
  Requires-Dist: google-genai==1.21.1
15
- Requires-Dist: mkdocs<2.0.0,>=1.6.1
16
- Requires-Dist: mkdocs-material<10.0.0,>=9.6.14
17
- Requires-Dist: mkdocstrings-python<2.0.0,>=1.16.12
18
15
  Requires-Dist: langchain-milvus<0.3.0,>=0.2.1
19
16
  Requires-Dist: langfuse<4.0.0,>=3.1.3
20
17
  Description-Content-Type: text/markdown
@@ -147,6 +147,7 @@ class ModelLoadBalancer:
147
147
  openai_api_version=model_config['api_version'],
148
148
  api_key=model_config['api_key'],
149
149
  azure_endpoint=model_config['api_base'],
150
+ dimensions=model_config.get('dimensions', 1536),
150
151
  chunk_size=16, request_timeout=60, max_retries=2
151
152
  )
152
153
  elif provider == 'google-genai':
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "crewplus"
9
- version = "0.2.21"
9
+ version = "0.2.23"
10
10
  description = "Base services for CrewPlus AI applications"
11
11
  authors = [
12
12
  { name = "Tim Liu", email = "tim@opsmateai.com" },
@@ -17,9 +17,6 @@ dependencies = [
17
17
  "langchain==0.3.25",
18
18
  "langchain-openai==0.3.24",
19
19
  "google-genai==1.21.1",
20
- "mkdocs (>=1.6.1,<2.0.0)",
21
- "mkdocs-material (>=9.6.14,<10.0.0)",
22
- "mkdocstrings-python (>=1.16.12,<2.0.0)",
23
20
  "langchain-milvus (>=0.2.1,<0.3.0)",
24
21
  "langfuse (>=3.1.3,<4.0.0)",
25
22
  ]
@@ -41,3 +38,6 @@ includes = [
41
38
 
42
39
  [tool.poetry.group.dev.dependencies]
43
40
  twine = "^6.1.0"
41
+ mkdocs = ">=1.6.1,<2.0.0"
42
+ mkdocs-material = ">=9.6.14,<10.0.0"
43
+ mkdocstrings-python = ">=1.16.12,<2.0.0"
File without changes
File without changes
File without changes
File without changes