Skip to content

Commit 62bc9ff

Browse files
feat(sdk): force ilgs v1 prefix on models
1 parent 55b68ce commit 62bc9ff

18 files changed

Lines changed: 1125 additions & 1564 deletions

.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: 1d77b499f5b4f2dc6986fdd5936d18ef
4+
config_hash: 821656ed414ab3ec256ecfb11585a614

api.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,23 @@ Methods:
5555
Types:
5656

5757
```python
58-
from isaacus.types import EnrichmentResponse
58+
from isaacus.types import (
59+
EnrichmentResponse,
60+
IlgsV1Crossreference,
61+
IlgsV1Date,
62+
IlgsV1Document,
63+
IlgsV1Email,
64+
IlgsV1ExternalDocument,
65+
IlgsV1IDNumber,
66+
IlgsV1Location,
67+
IlgsV1Person,
68+
IlgsV1PhoneNumber,
69+
IlgsV1Quote,
70+
IlgsV1Segment,
71+
IlgsV1Span,
72+
IlgsV1Term,
73+
IlgsV1Website,
74+
)
5975
```
6076

6177
Methods:

src/isaacus/types/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,23 @@
22

33
from __future__ import annotations
44

5+
from .ilgs_v1_date import IlgsV1Date as IlgsV1Date
6+
from .ilgs_v1_span import IlgsV1Span as IlgsV1Span
7+
from .ilgs_v1_term import IlgsV1Term as IlgsV1Term
8+
from .ilgs_v1_email import IlgsV1Email as IlgsV1Email
9+
from .ilgs_v1_quote import IlgsV1Quote as IlgsV1Quote
10+
from .ilgs_v1_person import IlgsV1Person as IlgsV1Person
11+
from .ilgs_v1_segment import IlgsV1Segment as IlgsV1Segment
12+
from .ilgs_v1_website import IlgsV1Website as IlgsV1Website
13+
from .ilgs_v1_document import IlgsV1Document as IlgsV1Document
14+
from .ilgs_v1_location import IlgsV1Location as IlgsV1Location
15+
from .ilgs_v1_id_number import IlgsV1IDNumber as IlgsV1IDNumber
516
from .embedding_response import EmbeddingResponse as EmbeddingResponse
617
from .reranking_response import RerankingResponse as RerankingResponse
718
from .enrichment_response import EnrichmentResponse as EnrichmentResponse
19+
from .ilgs_v1_phone_number import IlgsV1PhoneNumber as IlgsV1PhoneNumber
20+
from .ilgs_v1_crossreference import IlgsV1Crossreference as IlgsV1Crossreference
821
from .embedding_create_params import EmbeddingCreateParams as EmbeddingCreateParams
922
from .reranking_create_params import RerankingCreateParams as RerankingCreateParams
1023
from .enrichment_create_params import EnrichmentCreateParams as EnrichmentCreateParams
24+
from .ilgs_v1_external_document import IlgsV1ExternalDocument as IlgsV1ExternalDocument

0 commit comments

Comments
 (0)