crewplus 0.1.4__tar.gz → 0.1.5__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: crewplus
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Base services for CrewPlus AI applications
5
5
  Author-Email: Tim Liu <tim@opsmateai.com>
6
6
  License: MIT
@@ -509,7 +509,7 @@ class GeminiChatModel(BaseChatModel):
509
509
  config = self._prepare_generation_config(messages, stop)
510
510
 
511
511
  try:
512
- response = await self._client.generate_content(
512
+ response = await self._client.aio.models.generate_content(
513
513
  model=self.model_name,
514
514
  contents=contents,
515
515
  config=config,
@@ -573,7 +573,7 @@ class GeminiChatModel(BaseChatModel):
573
573
  config = self._prepare_generation_config(messages, stop)
574
574
 
575
575
  try:
576
- stream = await self._client.generate_content_stream(
576
+ stream = await self._client.aio.models.generate_content_stream(
577
577
  model=self.model_name,
578
578
  contents=contents,
579
579
  config=config,
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "crewplus"
9
- version = "0.1.4"
9
+ version = "0.1.5"
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