@@ -98,6 +98,7 @@ def __init__(
9898
9999 @cached_property
100100 def embeddings (self ) -> EmbeddingsResource :
101+ """Embed legal texts with Isaacus legal AI embedders."""
101102 from .resources .embeddings import EmbeddingsResource
102103
103104 return EmbeddingsResource (self )
@@ -110,6 +111,9 @@ def classifications(self) -> ClassificationsResource:
110111
111112 @cached_property
112113 def rerankings (self ) -> RerankingsResource :
114+ """
115+ Rerank legal documents by their relevance to queries with Isaacus legal AI rerankers.
116+ """
113117 from .resources .rerankings import RerankingsResource
114118
115119 return RerankingsResource (self )
@@ -296,6 +300,7 @@ def __init__(
296300
297301 @cached_property
298302 def embeddings (self ) -> AsyncEmbeddingsResource :
303+ """Embed legal texts with Isaacus legal AI embedders."""
299304 from .resources .embeddings import AsyncEmbeddingsResource
300305
301306 return AsyncEmbeddingsResource (self )
@@ -308,6 +313,9 @@ def classifications(self) -> AsyncClassificationsResource:
308313
309314 @cached_property
310315 def rerankings (self ) -> AsyncRerankingsResource :
316+ """
317+ Rerank legal documents by their relevance to queries with Isaacus legal AI rerankers.
318+ """
311319 from .resources .rerankings import AsyncRerankingsResource
312320
313321 return AsyncRerankingsResource (self )
@@ -445,6 +453,7 @@ def __init__(self, client: Isaacus) -> None:
445453
446454 @cached_property
447455 def embeddings (self ) -> embeddings .EmbeddingsResourceWithRawResponse :
456+ """Embed legal texts with Isaacus legal AI embedders."""
448457 from .resources .embeddings import EmbeddingsResourceWithRawResponse
449458
450459 return EmbeddingsResourceWithRawResponse (self ._client .embeddings )
@@ -457,6 +466,9 @@ def classifications(self) -> classifications.ClassificationsResourceWithRawRespo
457466
458467 @cached_property
459468 def rerankings (self ) -> rerankings .RerankingsResourceWithRawResponse :
469+ """
470+ Rerank legal documents by their relevance to queries with Isaacus legal AI rerankers.
471+ """
460472 from .resources .rerankings import RerankingsResourceWithRawResponse
461473
462474 return RerankingsResourceWithRawResponse (self ._client .rerankings )
@@ -482,6 +494,7 @@ def __init__(self, client: AsyncIsaacus) -> None:
482494
483495 @cached_property
484496 def embeddings (self ) -> embeddings .AsyncEmbeddingsResourceWithRawResponse :
497+ """Embed legal texts with Isaacus legal AI embedders."""
485498 from .resources .embeddings import AsyncEmbeddingsResourceWithRawResponse
486499
487500 return AsyncEmbeddingsResourceWithRawResponse (self ._client .embeddings )
@@ -494,6 +507,9 @@ def classifications(self) -> classifications.AsyncClassificationsResourceWithRaw
494507
495508 @cached_property
496509 def rerankings (self ) -> rerankings .AsyncRerankingsResourceWithRawResponse :
510+ """
511+ Rerank legal documents by their relevance to queries with Isaacus legal AI rerankers.
512+ """
497513 from .resources .rerankings import AsyncRerankingsResourceWithRawResponse
498514
499515 return AsyncRerankingsResourceWithRawResponse (self ._client .rerankings )
@@ -519,6 +535,7 @@ def __init__(self, client: Isaacus) -> None:
519535
520536 @cached_property
521537 def embeddings (self ) -> embeddings .EmbeddingsResourceWithStreamingResponse :
538+ """Embed legal texts with Isaacus legal AI embedders."""
522539 from .resources .embeddings import EmbeddingsResourceWithStreamingResponse
523540
524541 return EmbeddingsResourceWithStreamingResponse (self ._client .embeddings )
@@ -531,6 +548,9 @@ def classifications(self) -> classifications.ClassificationsResourceWithStreamin
531548
532549 @cached_property
533550 def rerankings (self ) -> rerankings .RerankingsResourceWithStreamingResponse :
551+ """
552+ Rerank legal documents by their relevance to queries with Isaacus legal AI rerankers.
553+ """
534554 from .resources .rerankings import RerankingsResourceWithStreamingResponse
535555
536556 return RerankingsResourceWithStreamingResponse (self ._client .rerankings )
@@ -556,6 +576,7 @@ def __init__(self, client: AsyncIsaacus) -> None:
556576
557577 @cached_property
558578 def embeddings (self ) -> embeddings .AsyncEmbeddingsResourceWithStreamingResponse :
579+ """Embed legal texts with Isaacus legal AI embedders."""
559580 from .resources .embeddings import AsyncEmbeddingsResourceWithStreamingResponse
560581
561582 return AsyncEmbeddingsResourceWithStreamingResponse (self ._client .embeddings )
@@ -568,6 +589,9 @@ def classifications(self) -> classifications.AsyncClassificationsResourceWithStr
568589
569590 @cached_property
570591 def rerankings (self ) -> rerankings .AsyncRerankingsResourceWithStreamingResponse :
592+ """
593+ Rerank legal documents by their relevance to queries with Isaacus legal AI rerankers.
594+ """
571595 from .resources .rerankings import AsyncRerankingsResourceWithStreamingResponse
572596
573597 return AsyncRerankingsResourceWithStreamingResponse (self ._client .rerankings )
0 commit comments