crewplus 0.2.37__tar.gz → 0.2.38__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 (22) hide show
  1. {crewplus-0.2.37 → crewplus-0.2.38}/PKG-INFO +2 -1
  2. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/services/gemini_chat_model.py +7 -4
  3. {crewplus-0.2.37 → crewplus-0.2.38}/pyproject.toml +2 -1
  4. {crewplus-0.2.37 → crewplus-0.2.38}/LICENSE +0 -0
  5. {crewplus-0.2.37 → crewplus-0.2.38}/README.md +0 -0
  6. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/__init__.py +0 -0
  7. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/services/__init__.py +0 -0
  8. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/services/azure_chat_model.py +0 -0
  9. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/services/init_services.py +0 -0
  10. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/services/model_load_balancer.py +0 -0
  11. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/services/tracing_manager.py +0 -0
  12. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/utils/__init__.py +0 -0
  13. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/utils/schema_action.py +0 -0
  14. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/utils/schema_document_updater.py +0 -0
  15. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/vectorstores/milvus/__init__.py +0 -0
  16. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/vectorstores/milvus/milvus_schema_manager.py +0 -0
  17. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/vectorstores/milvus/schema_milvus.py +0 -0
  18. {crewplus-0.2.37 → crewplus-0.2.38}/crewplus/vectorstores/milvus/vdb_service.py +0 -0
  19. {crewplus-0.2.37 → crewplus-0.2.38}/docs/GeminiChatModel.md +0 -0
  20. {crewplus-0.2.37 → crewplus-0.2.38}/docs/ModelLoadBalancer.md +0 -0
  21. {crewplus-0.2.37 → crewplus-0.2.38}/docs/VDBService.md +0 -0
  22. {crewplus-0.2.37 → crewplus-0.2.38}/docs/index.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: crewplus
3
- Version: 0.2.37
3
+ Version: 0.2.38
4
4
  Summary: Base services for CrewPlus AI applications
5
5
  Author-Email: Tim Liu <tim@opsmateai.com>
6
6
  License: MIT
@@ -15,6 +15,7 @@ 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
17
  Requires-Dist: langchain-mcp-adapters>=0.1.4
18
+ Requires-Dist: protobuf<6.0,>=5.27
18
19
  Description-Content-Type: text/markdown
19
20
 
20
21
  # CrewPlus
@@ -678,10 +678,13 @@ class GeminiChatModel(BaseChatModel):
678
678
  "thoughts_tokens": thoughts_tokens,
679
679
  "total_tokens": total_tokens,
680
680
  }
681
- if input_details:
682
- final_metadata["input_token_details"] = input_details
683
- if output_details:
684
- final_metadata["output_token_details"] = output_details
681
+
682
+ ## COMMENTED BEGIN: This is not working as expected.
683
+ # if input_details:
684
+ # final_metadata["input_token_details"] = input_details
685
+ # if output_details:
686
+ # final_metadata["output_token_details"] = output_details
687
+ ## COMMENTED END
685
688
 
686
689
  return final_metadata
687
690
 
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "crewplus"
9
- version = "0.2.37"
9
+ version = "0.2.38"
10
10
  description = "Base services for CrewPlus AI applications"
11
11
  authors = [
12
12
  { name = "Tim Liu", email = "tim@opsmateai.com" },
@@ -20,6 +20,7 @@ dependencies = [
20
20
  "langchain-milvus (>=0.2.1,<0.3.0)",
21
21
  "langfuse (>=3.1.3,<4.0.0)",
22
22
  "langchain-mcp-adapters>=0.1.4",
23
+ "protobuf (>=5.27,<6.0)",
23
24
  ]
24
25
 
25
26
  [project.license]
File without changes
File without changes
File without changes
File without changes