ray-embedding 0.12.9__tar.gz → 0.12.10__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 ray-embedding might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ray-embedding
3
- Version: 0.12.9
3
+ Version: 0.12.10
4
4
  Summary: Deploy SentenceTransformers embedding models to a ray cluster
5
5
  Author: Crispin Almodovar
6
6
  Author-email:
@@ -6,7 +6,8 @@ import ray
6
6
  from ray import serve
7
7
 
8
8
 
9
- @serve.deployment(autoscaling_config=dict(min_replicas=1, max_replicas=1))
9
+ @serve.deployment(autoscaling_config=dict(min_replicas=1, max_replicas=1),
10
+ ray_actor_options=dict(num_cpus=0.1))
10
11
  class NodeHealthTracker:
11
12
  """Maintains a list of bad nodes, as reported by replicas that call the report_bad_node func.
12
13
  Bad nodes are those that fail GPU/CUDA health check.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ray-embedding
3
- Version: 0.12.9
3
+ Version: 0.12.10
4
4
  Summary: Deploy SentenceTransformers embedding models to a ray cluster
5
5
  Author: Crispin Almodovar
6
6
  Author-email:
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = ray-embedding
3
- version = 0.12.9
3
+ version = 0.12.10
4
4
  author = Crispin Almodovar
5
5
  author_email =
6
6
  description = Deploy SentenceTransformers embedding models to a ray cluster