Skip to content

Commit 36f1cd8

Browse files
feat(api): added latest OpenAPI specification (#5)
1 parent 8841b6a commit 36f1cd8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-ff8122be1ea78433b852e3c9c99da1115876f6bbb30a445f910d2414a1842999.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-ff9b8efbcbe7df32d2a1bce3e37cfaa44d762d1212f3cfaddab353b2758eb0c5.yml

src/isaacus/types/classifications/universal_classification.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88

99

1010
class Chunk(BaseModel):
11-
confidence: float
11+
end: int
12+
"""The end index of the chunk in the original text."""
13+
14+
score: float
1215
"""
1316
The model's score of the likelihood that the query expressed about the chunk is
1417
supported by the chunk.
@@ -17,9 +20,6 @@ class Chunk(BaseModel):
1720
score less than `0.5` indicates that the chunk does not support the query.
1821
"""
1922

20-
end: int
21-
"""The end index of the chunk in the original text."""
22-
2323
start: int
2424
"""The start index of the chunk in the original text."""
2525

0 commit comments

Comments
 (0)