graphlit-client 1.0.20260107001__py3-none-any.whl → 1.0.20260109001__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.
- graphlit_api/__init__.py +0 -4
- graphlit_api/exceptions.py +1 -3
- graphlit_api/lookup_contents.py +0 -12
- graphlit_api/operations.py +0 -8
- {graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/RECORD +9 -9
- {graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
|
@@ -2081,7 +2081,6 @@ from .lookup_contents import (
|
|
|
2081
2081
|
LookupContentsLookupContentsResults,
|
|
2082
2082
|
LookupContentsLookupContentsResultsAddress,
|
|
2083
2083
|
LookupContentsLookupContentsResultsAudio,
|
|
2084
|
-
LookupContentsLookupContentsResultsChildren,
|
|
2085
2084
|
LookupContentsLookupContentsResultsCollections,
|
|
2086
2085
|
LookupContentsLookupContentsResultsCommit,
|
|
2087
2086
|
LookupContentsLookupContentsResultsCommitAuthors,
|
|
@@ -2121,7 +2120,6 @@ from .lookup_contents import (
|
|
|
2121
2120
|
LookupContentsLookupContentsResultsPages,
|
|
2122
2121
|
LookupContentsLookupContentsResultsPagesChunks,
|
|
2123
2122
|
LookupContentsLookupContentsResultsPagesImages,
|
|
2124
|
-
LookupContentsLookupContentsResultsParent,
|
|
2125
2123
|
LookupContentsLookupContentsResultsPost,
|
|
2126
2124
|
LookupContentsLookupContentsResultsPostAuthor,
|
|
2127
2125
|
LookupContentsLookupContentsResultsPullRequest,
|
|
@@ -6211,7 +6209,6 @@ __all__ = [
|
|
|
6211
6209
|
"LookupContentsLookupContentsResults",
|
|
6212
6210
|
"LookupContentsLookupContentsResultsAddress",
|
|
6213
6211
|
"LookupContentsLookupContentsResultsAudio",
|
|
6214
|
-
"LookupContentsLookupContentsResultsChildren",
|
|
6215
6212
|
"LookupContentsLookupContentsResultsCollections",
|
|
6216
6213
|
"LookupContentsLookupContentsResultsCommit",
|
|
6217
6214
|
"LookupContentsLookupContentsResultsCommitAuthors",
|
|
@@ -6251,7 +6248,6 @@ __all__ = [
|
|
|
6251
6248
|
"LookupContentsLookupContentsResultsPages",
|
|
6252
6249
|
"LookupContentsLookupContentsResultsPagesChunks",
|
|
6253
6250
|
"LookupContentsLookupContentsResultsPagesImages",
|
|
6254
|
-
"LookupContentsLookupContentsResultsParent",
|
|
6255
6251
|
"LookupContentsLookupContentsResultsPost",
|
|
6256
6252
|
"LookupContentsLookupContentsResultsPostAuthor",
|
|
6257
6253
|
"LookupContentsLookupContentsResultsPullRequest",
|
graphlit_api/exceptions.py
CHANGED
|
@@ -15,8 +15,7 @@ class GraphQLClientHttpError(GraphQLClientError):
|
|
|
15
15
|
self.response = response
|
|
16
16
|
|
|
17
17
|
def __str__(self) -> str:
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
return f"HTTP status code: {self.status_code}\n{self.response.text}"
|
|
20
19
|
|
|
21
20
|
class GraphQLClientInvalidResponseError(GraphQLClientError):
|
|
22
21
|
def __init__(self, response: httpx.Response) -> None:
|
|
@@ -25,7 +24,6 @@ class GraphQLClientInvalidResponseError(GraphQLClientError):
|
|
|
25
24
|
def __str__(self) -> str:
|
|
26
25
|
return "Invalid response format."
|
|
27
26
|
|
|
28
|
-
|
|
29
27
|
class GraphQLClientGraphQLError(GraphQLClientError):
|
|
30
28
|
def __init__(
|
|
31
29
|
self,
|
graphlit_api/lookup_contents.py
CHANGED
|
@@ -105,8 +105,6 @@ class LookupContentsLookupContentsResults(BaseModel):
|
|
|
105
105
|
meeting: Optional["LookupContentsLookupContentsResultsMeeting"]
|
|
106
106
|
transcript: Optional["LookupContentsLookupContentsResultsTranscript"]
|
|
107
107
|
language: Optional["LookupContentsLookupContentsResultsLanguage"]
|
|
108
|
-
parent: Optional["LookupContentsLookupContentsResultsParent"]
|
|
109
|
-
children: Optional[List[Optional["LookupContentsLookupContentsResultsChildren"]]]
|
|
110
108
|
feed: Optional["LookupContentsLookupContentsResultsFeed"]
|
|
111
109
|
collections: Optional[
|
|
112
110
|
List[Optional["LookupContentsLookupContentsResultsCollections"]]
|
|
@@ -517,16 +515,6 @@ class LookupContentsLookupContentsResultsLanguage(BaseModel):
|
|
|
517
515
|
languages: Optional[List[Optional[str]]]
|
|
518
516
|
|
|
519
517
|
|
|
520
|
-
class LookupContentsLookupContentsResultsParent(BaseModel):
|
|
521
|
-
id: str
|
|
522
|
-
name: str
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
class LookupContentsLookupContentsResultsChildren(BaseModel):
|
|
526
|
-
id: str
|
|
527
|
-
name: str
|
|
528
|
-
|
|
529
|
-
|
|
530
518
|
class LookupContentsLookupContentsResultsFeed(BaseModel):
|
|
531
519
|
id: str
|
|
532
520
|
name: str
|
graphlit_api/operations.py
CHANGED
{graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
graphlit/__init__.py,sha256=D3Qg8szqjSHDVcAY3uwwuok9umiUOUB7Xg6ZovHJHbA,31
|
|
2
2
|
graphlit/graphlit.py,sha256=qsvNZMS4A0tcpujZI3XNHuTrNO1sDg94irIRQ4GL-pw,2337
|
|
3
|
-
graphlit_api/__init__.py,sha256=
|
|
3
|
+
graphlit_api/__init__.py,sha256=MDdKj4YCInTQsGeZgBoxcQ4W4ikhJFoBFu0fjvi6X-8,343367
|
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=U7qAS7KyykQO5Oh0C2_29wDANt8bTXGLpKxKKO-2N6U,6824
|
|
6
6
|
graphlit_api/async_base_client.py,sha256=RCTcJJTUQQ3MOjza_VZQG3E0fvKpFSfb9Z0O-tVrGlY,12493
|
|
@@ -186,7 +186,7 @@ graphlit_api/enrich_persons.py,sha256=PzOyz744u6krplAMe7mK8UlblENXEQbtQLAJ24IRi4
|
|
|
186
186
|
graphlit_api/enrich_places.py,sha256=0yF-P8Otl-lVse3_KN15fxuGw4RkGdYvsplvKc4hLqU,402
|
|
187
187
|
graphlit_api/enrich_products.py,sha256=KiHCRKGhyfoghVp8driKwWhKa9VDzUWVkRBCuKMhRrw,418
|
|
188
188
|
graphlit_api/enums.py,sha256=GPWoYD5gQ5cyFuWdoF1y5_EP4jTxTEZr04QTcWNqijY,37512
|
|
189
|
-
graphlit_api/exceptions.py,sha256=
|
|
189
|
+
graphlit_api/exceptions.py,sha256=p3CCuIIxUdzFbJwMQ3XqQnYtQ9eH1Hi1_StoA9wk-Aw,2448
|
|
190
190
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
|
191
191
|
graphlit_api/extract_observables.py,sha256=2sUFDZdX00IzfLEMDyNHVkIbQq1pX9E2imC1KXvCmXk,5879
|
|
192
192
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
|
@@ -238,13 +238,13 @@ graphlit_api/ingest_uri.py,sha256=ufuiJ4JcVZDFhWnk6cOGVntoe6WgKTwK67RgyLYXD-U,22
|
|
|
238
238
|
graphlit_api/input_types.py,sha256=Qq3nf7Iaq-p1vdzxhfNnvIVAjcBFlHLejuei4j6J12I,226231
|
|
239
239
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
|
240
240
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
|
241
|
-
graphlit_api/lookup_contents.py,sha256=
|
|
241
|
+
graphlit_api/lookup_contents.py,sha256=AerwxqeexOsmTLvFiouiw0fWRYynS4qwDBYR60CXiTs,23664
|
|
242
242
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
|
243
243
|
graphlit_api/lookup_entity.py,sha256=R9KV_sQpH5dinGYIpzpAhoRatJnEKZe27kL45WWEl6s,1114
|
|
244
244
|
graphlit_api/lookup_usage.py,sha256=4mCkBvDtScCF-mDds5JxpDbD47PY6cfniM-Pl9UG1_E,1571
|
|
245
245
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
|
246
246
|
graphlit_api/match_entity.py,sha256=FOSSAoG7T250uAXEhHhu7RIorJK8zG8lX9jpLPneUG8,809
|
|
247
|
-
graphlit_api/operations.py,sha256=
|
|
247
|
+
graphlit_api/operations.py,sha256=GIWtPD29OnJyEmC6ZLmihVlPW4aqDmsPBI7ywMAJc2o,318892
|
|
248
248
|
graphlit_api/prompt.py,sha256=QL3HDVz_QtXmKX7TL8oMMa-9BB28IJx6E9Q8ugFByGg,6538
|
|
249
249
|
graphlit_api/prompt_conversation.py,sha256=8By4zKqU2rh9eAhTtFDQdbx9rX7kThCFFsIsZ-1g5b0,17128
|
|
250
250
|
graphlit_api/prompt_specifications.py,sha256=SJZifJCLVgcEFX2PGIMc3MA3tDnJBVRauc6ePUeZx8o,7425
|
|
@@ -399,8 +399,8 @@ graphlit_api/upsert_view.py,sha256=OChB2I0ZYW_HvJUYyKyODnWkaIut1PaSowSRqEsS0Q0,1
|
|
|
399
399
|
graphlit_api/upsert_workflow.py,sha256=u2cgDKeBLh_qCVdbRQueW4cfoqeKYzKC8sJphjeXqBc,18608
|
|
400
400
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
|
401
401
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
|
402
|
-
graphlit_client-1.0.
|
|
403
|
-
graphlit_client-1.0.
|
|
404
|
-
graphlit_client-1.0.
|
|
405
|
-
graphlit_client-1.0.
|
|
406
|
-
graphlit_client-1.0.
|
|
402
|
+
graphlit_client-1.0.20260109001.dist-info/licenses/LICENSE,sha256=jXhY7KvtRtwhhxDAmj6TO3oHISIIgch5KusiqpAwcAI,1074
|
|
403
|
+
graphlit_client-1.0.20260109001.dist-info/METADATA,sha256=qDOsCybOqMqwTiZMg0nRa1tm4Tlh-TDupQ9auJxvzus,3408
|
|
404
|
+
graphlit_client-1.0.20260109001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
405
|
+
graphlit_client-1.0.20260109001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
|
406
|
+
graphlit_client-1.0.20260109001.dist-info/RECORD,,
|
{graphlit_client-1.0.20260107001.dist-info → graphlit_client-1.0.20260109001.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|