Skip to content

Commit 873f1a4

Browse files
feat(sdk): demote other models
1 parent 920e2bb commit 873f1a4

20 files changed

+1569
-1128
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 5
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-fa910a5a3d1321234423bd8c042d202a64d4d956ef45847b4de358cb18e447eb.yml
33
openapi_spec_hash: 926b9b619c15e8570e496e11d4fb753e
4-
config_hash: 7b8cddc2fa896f9ab05e6b05055c7f27
4+
config_hash: 67e3b91c6b2d2d5377f56bc8d2e8c93e

api.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -66,25 +66,8 @@ Methods:
6666

6767
## v1
6868

69-
### v1
70-
7169
Types:
7270

7371
```python
74-
from isaacus.types.ilgs.v1 import (
75-
Crossreference,
76-
Date,
77-
Document,
78-
Email,
79-
ExternalDocument,
80-
IDNumber,
81-
Location,
82-
Person,
83-
PhoneNumber,
84-
Quote,
85-
Segment,
86-
Span,
87-
Term,
88-
Website,
89-
)
72+
from isaacus.types.ilgs import ILGSv1Document
9073
```

src/isaacus/types/enrichment_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from typing import List
44

55
from .._models import BaseModel
6-
from .ilgs.v1.document import Document
6+
from .ilgs.ilgs_v1_document import ILGSv1Document
77

88
__all__ = ["EnrichmentResponse", "Result", "Usage"]
99

@@ -17,7 +17,7 @@ class Result(BaseModel):
1717
therefore, ending at the number of inputs minus `1`).
1818
"""
1919

20-
document: Document
20+
document: ILGSv1Document
2121
"""The enriched document."""
2222

2323

src/isaacus/types/ilgs/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
from __future__ import annotations
4+
5+
from .ilgs_v1_document import ILGSv1Document as ILGSv1Document

0 commit comments

Comments
 (0)