isaacus 0.11.0__py3-none-any.whl → 0.13.0__py3-none-any.whl
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.
- isaacus/_version.py +1 -1
- isaacus/resources/classifications/universal.py +8 -8
- isaacus/resources/embeddings.py +24 -24
- isaacus/resources/extractions/__init__.py +12 -12
- isaacus/resources/extractions/extractions.py +18 -18
- isaacus/resources/extractions/qa.py +29 -29
- isaacus/resources/rerankings.py +12 -12
- isaacus/types/__init__.py +14 -0
- isaacus/types/classifications/universal_classification_response.py +22 -22
- isaacus/types/classifications/universal_create_params.py +6 -6
- isaacus/types/crossreference.py +42 -0
- isaacus/types/date.py +70 -0
- isaacus/types/document.py +172 -0
- isaacus/types/email.py +27 -0
- isaacus/types/embedding_create_params.py +11 -11
- isaacus/types/embedding_response.py +3 -3
- isaacus/types/enrichment_response.py +6 -1404
- isaacus/types/external_document.py +101 -0
- isaacus/types/extractions/__init__.py +1 -1
- isaacus/types/extractions/answer_extraction_response.py +12 -12
- isaacus/types/extractions/qa_create_params.py +8 -8
- isaacus/types/id_number.py +27 -0
- isaacus/types/location.py +53 -0
- isaacus/types/person.py +195 -0
- isaacus/types/phone_number.py +30 -0
- isaacus/types/quote.py +52 -0
- isaacus/types/reranking_create_params.py +7 -7
- isaacus/types/segment.py +205 -0
- isaacus/types/span.py +28 -0
- isaacus/types/term.py +59 -0
- isaacus/types/website.py +28 -0
- {isaacus-0.11.0.dist-info → isaacus-0.13.0.dist-info}/METADATA +1 -1
- {isaacus-0.11.0.dist-info → isaacus-0.13.0.dist-info}/RECORD +35 -21
- {isaacus-0.11.0.dist-info → isaacus-0.13.0.dist-info}/WHEEL +0 -0
- {isaacus-0.11.0.dist-info → isaacus-0.13.0.dist-info}/licenses/LICENSE +0 -0
isaacus/types/segment.py
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from .span import Span
|
|
7
|
+
from .._models import BaseModel
|
|
8
|
+
|
|
9
|
+
__all__ = ["Segment"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Segment(BaseModel):
|
|
13
|
+
"""
|
|
14
|
+
A segment within the document representing a structurally distinct portion of the document's content.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
id: str
|
|
18
|
+
"""
|
|
19
|
+
The unique identifier of the segment in the format `seg:{index}` where `{index}`
|
|
20
|
+
is a non-negative incrementing integer starting from zero.
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
kind: Literal["container", "unit", "item", "figure"]
|
|
24
|
+
"""
|
|
25
|
+
The structural 'kind' of the segment, being one of `container`, `unit`, `item`,
|
|
26
|
+
or `figure`.
|
|
27
|
+
|
|
28
|
+
A `container` is a structural or semantic grouping of content such as a chapter.
|
|
29
|
+
It can contain segments of any kind or none at all.
|
|
30
|
+
|
|
31
|
+
A `unit` is a single syntactically independent unit of text such as a paragraph.
|
|
32
|
+
It can only contain `item`s and `figure`s.
|
|
33
|
+
|
|
34
|
+
An `item` is a syntactically subordinate unit of text such as an item in a
|
|
35
|
+
run-in list. It can only contain other `item`s. Note that an `item` is
|
|
36
|
+
conceptually distinct from a list item—it is perfectly possible to encounter
|
|
37
|
+
list items that are syntactically independent of their surrounding items just as
|
|
38
|
+
it is possible to encounter dependent clauses that do not appear as part of a
|
|
39
|
+
list.
|
|
40
|
+
|
|
41
|
+
A `figure` is a visually structured or tabular unit of content such as a
|
|
42
|
+
diagram, equation, or table. It cannot contain segments.
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
type: Optional[
|
|
46
|
+
Literal[
|
|
47
|
+
"title",
|
|
48
|
+
"book",
|
|
49
|
+
"part",
|
|
50
|
+
"chapter",
|
|
51
|
+
"subchapter",
|
|
52
|
+
"division",
|
|
53
|
+
"subdivision",
|
|
54
|
+
"subpart",
|
|
55
|
+
"subtitle",
|
|
56
|
+
"table_of_contents",
|
|
57
|
+
"article",
|
|
58
|
+
"section",
|
|
59
|
+
"regulation",
|
|
60
|
+
"rule",
|
|
61
|
+
"clause",
|
|
62
|
+
"paragraph",
|
|
63
|
+
"subarticle",
|
|
64
|
+
"subsection",
|
|
65
|
+
"subregulation",
|
|
66
|
+
"subrule",
|
|
67
|
+
"subclause",
|
|
68
|
+
"subparagraph",
|
|
69
|
+
"item",
|
|
70
|
+
"subitem",
|
|
71
|
+
"point",
|
|
72
|
+
"indent",
|
|
73
|
+
"schedule",
|
|
74
|
+
"annex",
|
|
75
|
+
"appendix",
|
|
76
|
+
"exhibit",
|
|
77
|
+
"recital",
|
|
78
|
+
"signature",
|
|
79
|
+
"note",
|
|
80
|
+
"figure",
|
|
81
|
+
"table",
|
|
82
|
+
"formula",
|
|
83
|
+
]
|
|
84
|
+
] = None
|
|
85
|
+
"""
|
|
86
|
+
The addressable 'type' of the segment within the document's referential scheme
|
|
87
|
+
and hierarchy, whether defined explicitly (e.g., by headings, such as
|
|
88
|
+
'Section 2. Definitions'), implicitly (e.g., by way of reference, such as 'as
|
|
89
|
+
defined in Section 2'), or by convention (e.g., [42] in a judgment often denotes
|
|
90
|
+
a `paragraph`, independent provisions in statute are often `section`s, etc.). If
|
|
91
|
+
the type is not known or not applicable, it will be set to `null`.
|
|
92
|
+
|
|
93
|
+
Note that, although many segment types may coincide with syntactic constructs,
|
|
94
|
+
they should be thought of purely as distinct formal citable units. Most
|
|
95
|
+
paragraphs (in the syntactic sense) will not have the `paragraph` type, for
|
|
96
|
+
example. That type is reserved for segments that would formally be cited as a
|
|
97
|
+
'Paragraph' within the document's referential scheme.
|
|
98
|
+
|
|
99
|
+
The following types are currently supported: `title`, `book`, `part`, `chapter`,
|
|
100
|
+
`subchapter`, `division`, `subdivision`, `subpart`, `subtitle`,
|
|
101
|
+
`table_of_contents`, `article`, `section`, `regulation`, `rule`, `clause`,
|
|
102
|
+
`paragraph`, `subarticle`, `subsection`, `subregulation`, `subrule`,
|
|
103
|
+
`subclause`, `subparagraph`, `item`, `subitem`, `point`, `indent`, `schedule`,
|
|
104
|
+
`annex`, `appendix`, `exhibit`, `recital`, `signature`, `note`, `figure`,
|
|
105
|
+
`table`, and `formula`.
|
|
106
|
+
|
|
107
|
+
The `title`, `book`, `part`, `chapter`, `subchapter`, `division`, `subdivision`,
|
|
108
|
+
`subpart`, `subtitle`, and `table_of_contents` types are exclusive to the
|
|
109
|
+
`container` kind.
|
|
110
|
+
|
|
111
|
+
The `figure` kind only supports the `figure`, `table`, and `formula` types, all
|
|
112
|
+
of which are exclusive to it.
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
category: Literal["front_matter", "scope", "main", "annotation", "back_matter", "other"]
|
|
116
|
+
"""
|
|
117
|
+
The functional 'category' of the segment within the document, being one of
|
|
118
|
+
`front_matter`, `scope`, `main`, `annotation`, `back_matter`, or `other`.
|
|
119
|
+
|
|
120
|
+
`front_matter` denotes non-operative contextualizing content occurring at the
|
|
121
|
+
start of a document such as a preamble or recitals.
|
|
122
|
+
|
|
123
|
+
`scope` denotes operative content defining the application or interpretation of
|
|
124
|
+
a document such as definition sections and governing law clauses.
|
|
125
|
+
|
|
126
|
+
`main` denotes operative, non-scopal content.
|
|
127
|
+
|
|
128
|
+
`annotation` denotes non-operative annotative content providing explanatory or
|
|
129
|
+
referential information such as commentary, footnotes, and endnotes.
|
|
130
|
+
|
|
131
|
+
`back_matter` denotes non-operative contextualizing content occurring at the end
|
|
132
|
+
of a document such as authority statements.
|
|
133
|
+
|
|
134
|
+
`other` denotes content that does not fit into any of the other categories.
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
type_name: Optional[Span] = None
|
|
138
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
139
|
+
|
|
140
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible
|
|
141
|
+
for any two spans to partially overlap; they can only be disjoint, adjacent, or
|
|
142
|
+
wholly nested. Spans of the exact same type (e.g., segments) will never be
|
|
143
|
+
duplicated.
|
|
144
|
+
|
|
145
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
146
|
+
|
|
147
|
+
Note that, when using programming languages other than Python (which uses
|
|
148
|
+
zero-based, half-open, Unicode code point-spaced string indexing), indices may
|
|
149
|
+
need to be translated accordingly (for example, JavaScript slices into UTF-16
|
|
150
|
+
code units instead of Unicode code points).
|
|
151
|
+
"""
|
|
152
|
+
|
|
153
|
+
code: Optional[Span] = None
|
|
154
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
155
|
+
|
|
156
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible
|
|
157
|
+
for any two spans to partially overlap; they can only be disjoint, adjacent, or
|
|
158
|
+
wholly nested. Spans of the exact same type (e.g., segments) will never be
|
|
159
|
+
duplicated.
|
|
160
|
+
|
|
161
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
162
|
+
|
|
163
|
+
Note that, when using programming languages other than Python (which uses
|
|
164
|
+
zero-based, half-open, Unicode code point-spaced string indexing), indices may
|
|
165
|
+
need to be translated accordingly (for example, JavaScript slices into UTF-16
|
|
166
|
+
code units instead of Unicode code points).
|
|
167
|
+
"""
|
|
168
|
+
|
|
169
|
+
title: Optional[Span] = None
|
|
170
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
171
|
+
|
|
172
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible
|
|
173
|
+
for any two spans to partially overlap; they can only be disjoint, adjacent, or
|
|
174
|
+
wholly nested. Spans of the exact same type (e.g., segments) will never be
|
|
175
|
+
duplicated.
|
|
176
|
+
|
|
177
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
178
|
+
|
|
179
|
+
Note that, when using programming languages other than Python (which uses
|
|
180
|
+
zero-based, half-open, Unicode code point-spaced string indexing), indices may
|
|
181
|
+
need to be translated accordingly (for example, JavaScript slices into UTF-16
|
|
182
|
+
code units instead of Unicode code points).
|
|
183
|
+
"""
|
|
184
|
+
|
|
185
|
+
parent: Optional[str] = None
|
|
186
|
+
"""
|
|
187
|
+
A unique identifier for a segment in the format `seg:{index}` where `{index}` is
|
|
188
|
+
a non-negative incrementing integer starting from zero.
|
|
189
|
+
"""
|
|
190
|
+
|
|
191
|
+
span: Span
|
|
192
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
193
|
+
|
|
194
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible
|
|
195
|
+
for any two spans to partially overlap; they can only be disjoint, adjacent, or
|
|
196
|
+
wholly nested. Spans of the exact same type (e.g., segments) will never be
|
|
197
|
+
duplicated.
|
|
198
|
+
|
|
199
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
200
|
+
|
|
201
|
+
Note that, when using programming languages other than Python (which uses
|
|
202
|
+
zero-based, half-open, Unicode code point-spaced string indexing), indices may
|
|
203
|
+
need to be translated accordingly (for example, JavaScript slices into UTF-16
|
|
204
|
+
code units instead of Unicode code points).
|
|
205
|
+
"""
|
isaacus/types/span.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["Span"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Span(BaseModel):
|
|
9
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
10
|
+
|
|
11
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible for any two spans to partially overlap; they can only be disjoint, adjacent, or wholly nested. Spans of the exact same type (e.g., segments) will never be duplicated.
|
|
12
|
+
|
|
13
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
14
|
+
|
|
15
|
+
Note that, when using programming languages other than Python (which uses zero-based, half-open, Unicode code point-spaced string indexing), indices may need to be translated accordingly (for example, JavaScript slices into UTF-16 code units instead of Unicode code points).
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
start: int
|
|
19
|
+
"""
|
|
20
|
+
The zero-based start index of the half-open span of Unicode code points in the
|
|
21
|
+
input text.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
end: int
|
|
25
|
+
"""
|
|
26
|
+
The zero-based end index of the half-open span (i.e., the end is exclusive) of
|
|
27
|
+
Unicode code points in the input text.
|
|
28
|
+
"""
|
isaacus/types/term.py
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
from .span import Span
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["Term"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Term(BaseModel):
|
|
12
|
+
"""A term assigned a definite meaning within a document."""
|
|
13
|
+
|
|
14
|
+
id: str
|
|
15
|
+
"""
|
|
16
|
+
The unique identifier of the term in the format `term:{index}` where `{index}`
|
|
17
|
+
is a non-negative incrementing integer starting from zero.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
name: Span
|
|
21
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
22
|
+
|
|
23
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible
|
|
24
|
+
for any two spans to partially overlap; they can only be disjoint, adjacent, or
|
|
25
|
+
wholly nested. Spans of the exact same type (e.g., segments) will never be
|
|
26
|
+
duplicated.
|
|
27
|
+
|
|
28
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
29
|
+
|
|
30
|
+
Note that, when using programming languages other than Python (which uses
|
|
31
|
+
zero-based, half-open, Unicode code point-spaced string indexing), indices may
|
|
32
|
+
need to be translated accordingly (for example, JavaScript slices into UTF-16
|
|
33
|
+
code units instead of Unicode code points).
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
meaning: Span
|
|
37
|
+
"""A zero-based, half-open span into the Unicode code point space of input text.
|
|
38
|
+
|
|
39
|
+
All spans are globally laminar and well-nested similar to XML—it is impossible
|
|
40
|
+
for any two spans to partially overlap; they can only be disjoint, adjacent, or
|
|
41
|
+
wholly nested. Spans of the exact same type (e.g., segments) will never be
|
|
42
|
+
duplicated.
|
|
43
|
+
|
|
44
|
+
A span cannot be empty and will never start or end at whitespace.
|
|
45
|
+
|
|
46
|
+
Note that, when using programming languages other than Python (which uses
|
|
47
|
+
zero-based, half-open, Unicode code point-spaced string indexing), indices may
|
|
48
|
+
need to be translated accordingly (for example, JavaScript slices into UTF-16
|
|
49
|
+
code units instead of Unicode code points).
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
mentions: List[Span]
|
|
53
|
+
"""
|
|
54
|
+
An array of spans within the document's text where the term is mentioned outside
|
|
55
|
+
of its definition.
|
|
56
|
+
|
|
57
|
+
It is possible for the term to have no mentions if, outside of its definition,
|
|
58
|
+
it is never referred to in the document.
|
|
59
|
+
"""
|
isaacus/types/website.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
from .span import Span
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["Website"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Website(BaseModel):
|
|
12
|
+
"""A website identified in a document belonging to a legal person.
|
|
13
|
+
|
|
14
|
+
If a website was mentioned in the document but is not attributable to a legal person, it will not be extracted.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
url: str
|
|
18
|
+
"""The normalized URL of the website in the form `https://{host}/`."""
|
|
19
|
+
|
|
20
|
+
person: str
|
|
21
|
+
"""The unique identifier of the person that this website belongs to."""
|
|
22
|
+
|
|
23
|
+
mentions: List[Span]
|
|
24
|
+
"""
|
|
25
|
+
An array of one or more spans within the document's text where the website is
|
|
26
|
+
mentioned (including paths and slugs which are not part of the website's
|
|
27
|
+
normalized URL).
|
|
28
|
+
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: isaacus
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.0
|
|
4
4
|
Summary: The official Python library for the isaacus API
|
|
5
5
|
Project-URL: Homepage, https://github.com/isaacus-dev/isaacus-python
|
|
6
6
|
Project-URL: Repository, https://github.com/isaacus-dev/isaacus-python
|
|
@@ -11,7 +11,7 @@ isaacus/_resource.py,sha256=iP_oYhz5enCI58mK7hlwLoPMPh4Q5s8-KBv-jGfv2aM,1106
|
|
|
11
11
|
isaacus/_response.py,sha256=aXLF5ia58bjjQXTxY574lh7JfKXiGL2tDTX09klm8lw,28794
|
|
12
12
|
isaacus/_streaming.py,sha256=jcoIlOzPElsxFLKe54I-TavCZEuYIx_MYkZN3uSQFqk,10225
|
|
13
13
|
isaacus/_types.py,sha256=hm4MJQF5-9CmsPcIufE6_KvsWtxKrRMnJAgZ7MBydsk,7595
|
|
14
|
-
isaacus/_version.py,sha256=
|
|
14
|
+
isaacus/_version.py,sha256=oqAgTU8q_lQ9Fi2VY0n65Yy4cP5MfOYiSz4tRdhkZ-A,160
|
|
15
15
|
isaacus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
isaacus/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
isaacus/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -28,29 +28,43 @@ isaacus/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,478
|
|
|
28
28
|
isaacus/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
29
29
|
isaacus/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
30
30
|
isaacus/resources/__init__.py,sha256=lBkxBgx6-Cz4isNcKC15aHKJxXJN0xw3Dzj8iZlEz8o,2703
|
|
31
|
-
isaacus/resources/embeddings.py,sha256=
|
|
31
|
+
isaacus/resources/embeddings.py,sha256=82o8Q7pi4ve-Q-V3KA1I-WygV9iYEfwEAbId5ZnUhCU,9470
|
|
32
32
|
isaacus/resources/enrichments.py,sha256=CAl2NVmh15PDCT729rlGzi1Ww4d_TRaZVk_NHSmaD04,8743
|
|
33
|
-
isaacus/resources/rerankings.py,sha256=
|
|
33
|
+
isaacus/resources/rerankings.py,sha256=X5oisCxHeELNtDLEdPIu9P5DYydLBceBZ5vMPzMOIkU,11189
|
|
34
34
|
isaacus/resources/classifications/__init__.py,sha256=tYSnDm-o0CVuTC95VoNJzOqHsb8jTzYmW8hdwW14K60,1158
|
|
35
35
|
isaacus/resources/classifications/classifications.py,sha256=Td5Gscg1PNJJeobxow_hJq_RicpFe3ibEYN0Gh3Kpsg,4018
|
|
36
|
-
isaacus/resources/classifications/universal.py,sha256=
|
|
37
|
-
isaacus/resources/extractions/__init__.py,sha256=
|
|
38
|
-
isaacus/resources/extractions/extractions.py,sha256=
|
|
39
|
-
isaacus/resources/extractions/qa.py,sha256=
|
|
40
|
-
isaacus/types/__init__.py,sha256=
|
|
41
|
-
isaacus/types/
|
|
42
|
-
isaacus/types/
|
|
36
|
+
isaacus/resources/classifications/universal.py,sha256=qOVHy4GFrvC3jH3BxkhcKWzEnxda1QC-KOhDf5ammKM,10714
|
|
37
|
+
isaacus/resources/extractions/__init__.py,sha256=vH5RxCZmOg19r7ttxYcSQsxwL9MlomyewT-ZPYxC8HA,1015
|
|
38
|
+
isaacus/resources/extractions/extractions.py,sha256=TG2WSbGS1ufWuQz6bKU6SdswCex93gzyT5hQgn0FEC4,3671
|
|
39
|
+
isaacus/resources/extractions/qa.py,sha256=mCT63LN-luU1JhiRBDnRZuaNEA1V8TgiqDgkuo9rpuQ,10029
|
|
40
|
+
isaacus/types/__init__.py,sha256=Qdwm105MbCKcFM4seFEt8oD1m5AeVkQiPKk6DsSCzv4,1184
|
|
41
|
+
isaacus/types/crossreference.py,sha256=5Mc0yXRNn78mgBrVqC1mahPbW1byWzi6KOBKKSZfFOU,1622
|
|
42
|
+
isaacus/types/date.py,sha256=n6fa7H3FkVNc7CwyeeOEG_KaHSbaKQH8agE06ZUWu-k,2733
|
|
43
|
+
isaacus/types/document.py,sha256=-OeyvVw8OVbmuHaMGNqx9TumTU-hbuZDWMRrTRJktgg,5919
|
|
44
|
+
isaacus/types/email.py,sha256=Nc19c3b4N-VCORxhXuFX72KF9IP41mQbezXWZmtrJXE,726
|
|
45
|
+
isaacus/types/embedding_create_params.py,sha256=OCIuc_GeBQijFhjPMRdz5my05r3K1BG1IKy-nHmwUxg,1575
|
|
46
|
+
isaacus/types/embedding_response.py,sha256=kAE2EyR7MpY1fhk867iVErCl7pM0dYjypcZgbFAD_Vw,937
|
|
43
47
|
isaacus/types/enrichment_create_params.py,sha256=1wJUAs1hp_S6ej3aK8YqudEI8XIGaH29qfymcuRuHPg,1339
|
|
44
|
-
isaacus/types/enrichment_response.py,sha256=
|
|
45
|
-
isaacus/types/
|
|
48
|
+
isaacus/types/enrichment_response.py,sha256=Vy0ZA_D9_ioRP71H10kYj4pFS5BYPIEN_KL3sovlVQ4,2038
|
|
49
|
+
isaacus/types/external_document.py,sha256=hGoc-bLxUnNwRy8rnAjS4CTUsLoKsqr2E8EtJcloylI,3825
|
|
50
|
+
isaacus/types/id_number.py,sha256=MXD1bs_JuSYfEmiLlM5G812QvqHMiXUXyiL08cJHw-Y,759
|
|
51
|
+
isaacus/types/location.py,sha256=iQ6s7M6MkojrQO15-Bcx-RLfVYsHoz1K3zT76lYFllM,1751
|
|
52
|
+
isaacus/types/person.py,sha256=PdXyf3w7K7qCeCGOqI8PotZClYVPftI4ffPugjOPA4g,9800
|
|
53
|
+
isaacus/types/phone_number.py,sha256=WqAF9-4kzJMlUoyjXQzcFUX5lR2DJ3jS1FMGWNtt430,883
|
|
54
|
+
isaacus/types/quote.py,sha256=c_Nd74B_2dVzilollwoZQyloEc0h7C4yT0bDFaAhFiY,1755
|
|
55
|
+
isaacus/types/reranking_create_params.py,sha256=XiUTkTtkf4k0o-p-hqfQsXrdVcyO-HW0dYY-sTQhkDw,2595
|
|
46
56
|
isaacus/types/reranking_response.py,sha256=qyCeK30TC6YXO_zmzRzAskwQxnHuyehjqLM8QO5B8z0,1017
|
|
57
|
+
isaacus/types/segment.py,sha256=myczhGMxgC32ZsrAAldoohy_sXhDkSgLQZ860x8DjWM,8333
|
|
58
|
+
isaacus/types/span.py,sha256=Y2W9B8K9Lde1_EwvOYyhXZ_U6oAycgXQkWN7HFU3rY8,1148
|
|
59
|
+
isaacus/types/term.py,sha256=opd4ZHXdA9GsAbAuzt23wztupa1CsCksUKUd4GLUOgU,2207
|
|
60
|
+
isaacus/types/website.py,sha256=zOCckhmLaQupCYPce4bKSwkxWL0uenNZ7hwPbNfyC68,818
|
|
47
61
|
isaacus/types/classifications/__init__.py,sha256=5wz2ChA8Ld8Yfx-7z7PShbfeyvE3wXRfpkctjS27t10,321
|
|
48
|
-
isaacus/types/classifications/universal_classification_response.py,sha256=
|
|
49
|
-
isaacus/types/classifications/universal_create_params.py,sha256=
|
|
50
|
-
isaacus/types/extractions/__init__.py,sha256=
|
|
51
|
-
isaacus/types/extractions/answer_extraction_response.py,sha256=
|
|
52
|
-
isaacus/types/extractions/qa_create_params.py,sha256=
|
|
53
|
-
isaacus-0.
|
|
54
|
-
isaacus-0.
|
|
55
|
-
isaacus-0.
|
|
56
|
-
isaacus-0.
|
|
62
|
+
isaacus/types/classifications/universal_classification_response.py,sha256=2QfUqVFxvgkhvni9ooI9sRCb3xsbTNVs8PzuHLAE7oM,2545
|
|
63
|
+
isaacus/types/classifications/universal_create_params.py,sha256=IOAdb3sqg8ahSILJQ8jjtcgw693vGLTzCc8bQVfyND8,2392
|
|
64
|
+
isaacus/types/extractions/__init__.py,sha256=VXrUSuL-YBSy66o8Qwo3V4PrXLclfLHMoPIsElTV0tM,279
|
|
65
|
+
isaacus/types/extractions/answer_extraction_response.py,sha256=JGriq8l7OZeTK30AyDkDepbs839x9SZDCjDn8NJc7jQ,2383
|
|
66
|
+
isaacus/types/extractions/qa_create_params.py,sha256=vCoEwQGgfYF_eG0DGsfQnV4nC2_PhEc4D-f1aq-72sU,2200
|
|
67
|
+
isaacus-0.13.0.dist-info/METADATA,sha256=TBG7dVdJ5Tq04SBOj06TEESB0bSAl2gRS8Xgzf8FbYo,17499
|
|
68
|
+
isaacus-0.13.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
69
|
+
isaacus-0.13.0.dist-info/licenses/LICENSE,sha256=a39aM3IX2G2L5Xs88KP8lWSk-UJ3Eaqo8HwnQs9c08U,11337
|
|
70
|
+
isaacus-0.13.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|