graphlit-client 1.0.20250622001__py3-none-any.whl → 1.0.20250622002__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 +66 -0
- graphlit_api/client.py +21 -0
- graphlit_api/operations.py +254 -0
- graphlit_api/query_contents_observations.py +358 -0
- {graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/RECORD +9 -8
- {graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -1695,6 +1695,7 @@ from .operations import (
|
|
1695
1695
|
QUERY_CONTENTS_FACETS_GQL,
|
1696
1696
|
QUERY_CONTENTS_GQL,
|
1697
1697
|
QUERY_CONTENTS_GRAPH_GQL,
|
1698
|
+
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
1698
1699
|
QUERY_CONVERSATIONS_GQL,
|
1699
1700
|
QUERY_CREDITS_GQL,
|
1700
1701
|
QUERY_EVENTS_GQL,
|
@@ -1964,6 +1965,39 @@ from .query_contents_graph import (
|
|
1964
1965
|
QueryContentsGraphContentsGraphEdges,
|
1965
1966
|
QueryContentsGraphContentsGraphNodes,
|
1966
1967
|
)
|
1968
|
+
from .query_contents_observations import (
|
1969
|
+
QueryContentsObservations,
|
1970
|
+
QueryContentsObservationsContents,
|
1971
|
+
QueryContentsObservationsContentsResults,
|
1972
|
+
QueryContentsObservationsContentsResultsAddress,
|
1973
|
+
QueryContentsObservationsContentsResultsAudio,
|
1974
|
+
QueryContentsObservationsContentsResultsDocument,
|
1975
|
+
QueryContentsObservationsContentsResultsEmail,
|
1976
|
+
QueryContentsObservationsContentsResultsEmailBcc,
|
1977
|
+
QueryContentsObservationsContentsResultsEmailCc,
|
1978
|
+
QueryContentsObservationsContentsResultsEmailFrom,
|
1979
|
+
QueryContentsObservationsContentsResultsEmailTo,
|
1980
|
+
QueryContentsObservationsContentsResultsFeed,
|
1981
|
+
QueryContentsObservationsContentsResultsFrames,
|
1982
|
+
QueryContentsObservationsContentsResultsImage,
|
1983
|
+
QueryContentsObservationsContentsResultsIssue,
|
1984
|
+
QueryContentsObservationsContentsResultsLanguage,
|
1985
|
+
QueryContentsObservationsContentsResultsLinks,
|
1986
|
+
QueryContentsObservationsContentsResultsLocation,
|
1987
|
+
QueryContentsObservationsContentsResultsObservations,
|
1988
|
+
QueryContentsObservationsContentsResultsObservationsObservable,
|
1989
|
+
QueryContentsObservationsContentsResultsObservationsOccurrences,
|
1990
|
+
QueryContentsObservationsContentsResultsObservationsOccurrencesBoundingBox,
|
1991
|
+
QueryContentsObservationsContentsResultsObservationsRelated,
|
1992
|
+
QueryContentsObservationsContentsResultsOwner,
|
1993
|
+
QueryContentsObservationsContentsResultsPackage,
|
1994
|
+
QueryContentsObservationsContentsResultsPages,
|
1995
|
+
QueryContentsObservationsContentsResultsPagesChunks,
|
1996
|
+
QueryContentsObservationsContentsResultsPagesImages,
|
1997
|
+
QueryContentsObservationsContentsResultsSegments,
|
1998
|
+
QueryContentsObservationsContentsResultsVideo,
|
1999
|
+
QueryContentsObservationsContentsResultsWorkflow,
|
2000
|
+
)
|
1967
2001
|
from .query_conversations import (
|
1968
2002
|
QueryConversations,
|
1969
2003
|
QueryConversationsConversations,
|
@@ -4160,6 +4194,7 @@ __all__ = [
|
|
4160
4194
|
"QUERY_CONTENTS_FACETS_GQL",
|
4161
4195
|
"QUERY_CONTENTS_GQL",
|
4162
4196
|
"QUERY_CONTENTS_GRAPH_GQL",
|
4197
|
+
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
4163
4198
|
"QUERY_CONVERSATIONS_GQL",
|
4164
4199
|
"QUERY_CREDITS_GQL",
|
4165
4200
|
"QUERY_EVENTS_GQL",
|
@@ -4280,6 +4315,37 @@ __all__ = [
|
|
4280
4315
|
"QueryContentsGraphContentsGraph",
|
4281
4316
|
"QueryContentsGraphContentsGraphEdges",
|
4282
4317
|
"QueryContentsGraphContentsGraphNodes",
|
4318
|
+
"QueryContentsObservations",
|
4319
|
+
"QueryContentsObservationsContents",
|
4320
|
+
"QueryContentsObservationsContentsResults",
|
4321
|
+
"QueryContentsObservationsContentsResultsAddress",
|
4322
|
+
"QueryContentsObservationsContentsResultsAudio",
|
4323
|
+
"QueryContentsObservationsContentsResultsDocument",
|
4324
|
+
"QueryContentsObservationsContentsResultsEmail",
|
4325
|
+
"QueryContentsObservationsContentsResultsEmailBcc",
|
4326
|
+
"QueryContentsObservationsContentsResultsEmailCc",
|
4327
|
+
"QueryContentsObservationsContentsResultsEmailFrom",
|
4328
|
+
"QueryContentsObservationsContentsResultsEmailTo",
|
4329
|
+
"QueryContentsObservationsContentsResultsFeed",
|
4330
|
+
"QueryContentsObservationsContentsResultsFrames",
|
4331
|
+
"QueryContentsObservationsContentsResultsImage",
|
4332
|
+
"QueryContentsObservationsContentsResultsIssue",
|
4333
|
+
"QueryContentsObservationsContentsResultsLanguage",
|
4334
|
+
"QueryContentsObservationsContentsResultsLinks",
|
4335
|
+
"QueryContentsObservationsContentsResultsLocation",
|
4336
|
+
"QueryContentsObservationsContentsResultsObservations",
|
4337
|
+
"QueryContentsObservationsContentsResultsObservationsObservable",
|
4338
|
+
"QueryContentsObservationsContentsResultsObservationsOccurrences",
|
4339
|
+
"QueryContentsObservationsContentsResultsObservationsOccurrencesBoundingBox",
|
4340
|
+
"QueryContentsObservationsContentsResultsObservationsRelated",
|
4341
|
+
"QueryContentsObservationsContentsResultsOwner",
|
4342
|
+
"QueryContentsObservationsContentsResultsPackage",
|
4343
|
+
"QueryContentsObservationsContentsResultsPages",
|
4344
|
+
"QueryContentsObservationsContentsResultsPagesChunks",
|
4345
|
+
"QueryContentsObservationsContentsResultsPagesImages",
|
4346
|
+
"QueryContentsObservationsContentsResultsSegments",
|
4347
|
+
"QueryContentsObservationsContentsResultsVideo",
|
4348
|
+
"QueryContentsObservationsContentsResultsWorkflow",
|
4283
4349
|
"QueryConversations",
|
4284
4350
|
"QueryConversationsConversations",
|
4285
4351
|
"QueryConversationsConversationsResults",
|
graphlit_api/client.py
CHANGED
@@ -534,6 +534,7 @@ from .operations import (
|
|
534
534
|
QUERY_CONTENTS_FACETS_GQL,
|
535
535
|
QUERY_CONTENTS_GQL,
|
536
536
|
QUERY_CONTENTS_GRAPH_GQL,
|
537
|
+
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
537
538
|
QUERY_CONVERSATIONS_GQL,
|
538
539
|
QUERY_CREDITS_GQL,
|
539
540
|
QUERY_EVENTS_GQL,
|
@@ -632,6 +633,7 @@ from .query_collections import QueryCollections
|
|
632
633
|
from .query_contents import QueryContents
|
633
634
|
from .query_contents_facets import QueryContentsFacets
|
634
635
|
from .query_contents_graph import QueryContentsGraph
|
636
|
+
from .query_contents_observations import QueryContentsObservations
|
635
637
|
from .query_conversations import QueryConversations
|
636
638
|
from .query_credits import QueryCredits
|
637
639
|
from .query_events import QueryEvents
|
@@ -1739,6 +1741,25 @@ class Client(AsyncBaseClient):
|
|
1739
1741
|
data = self.get_data(response)
|
1740
1742
|
return QueryContentsGraph.model_validate(data)
|
1741
1743
|
|
1744
|
+
async def query_contents_observations(
|
1745
|
+
self,
|
1746
|
+
filter: Union[Optional[ContentFilter], UnsetType] = UNSET,
|
1747
|
+
correlation_id: Union[Optional[str], UnsetType] = UNSET,
|
1748
|
+
**kwargs: Any
|
1749
|
+
) -> QueryContentsObservations:
|
1750
|
+
variables: Dict[str, object] = {
|
1751
|
+
"filter": filter,
|
1752
|
+
"correlationId": correlation_id,
|
1753
|
+
}
|
1754
|
+
response = await self.execute(
|
1755
|
+
query=QUERY_CONTENTS_OBSERVATIONS_GQL,
|
1756
|
+
operation_name="QueryContentsObservations",
|
1757
|
+
variables=variables,
|
1758
|
+
**kwargs
|
1759
|
+
)
|
1760
|
+
data = self.get_data(response)
|
1761
|
+
return QueryContentsObservations.model_validate(data)
|
1762
|
+
|
1742
1763
|
async def screenshot_page(
|
1743
1764
|
self,
|
1744
1765
|
uri: Any,
|
graphlit_api/operations.py
CHANGED
@@ -216,6 +216,7 @@ __all__ = [
|
|
216
216
|
"QUERY_CONTENTS_FACETS_GQL",
|
217
217
|
"QUERY_CONTENTS_GQL",
|
218
218
|
"QUERY_CONTENTS_GRAPH_GQL",
|
219
|
+
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
219
220
|
"QUERY_CONVERSATIONS_GQL",
|
220
221
|
"QUERY_CREDITS_GQL",
|
221
222
|
"QUERY_EVENTS_GQL",
|
@@ -2747,6 +2748,259 @@ query QueryContentsGraph($filter: ContentFilter, $graph: ContentGraphInput, $cor
|
|
2747
2748
|
}
|
2748
2749
|
"""
|
2749
2750
|
|
2751
|
+
QUERY_CONTENTS_OBSERVATIONS_GQL = """
|
2752
|
+
query QueryContentsObservations($filter: ContentFilter, $correlationId: String) {
|
2753
|
+
contents(filter: $filter, correlationId: $correlationId) {
|
2754
|
+
results {
|
2755
|
+
id
|
2756
|
+
name
|
2757
|
+
creationDate
|
2758
|
+
relevance
|
2759
|
+
owner {
|
2760
|
+
id
|
2761
|
+
}
|
2762
|
+
state
|
2763
|
+
originalDate
|
2764
|
+
finishedDate
|
2765
|
+
workflowDuration
|
2766
|
+
uri
|
2767
|
+
description
|
2768
|
+
identifier
|
2769
|
+
address {
|
2770
|
+
streetAddress
|
2771
|
+
city
|
2772
|
+
region
|
2773
|
+
country
|
2774
|
+
postalCode
|
2775
|
+
}
|
2776
|
+
location {
|
2777
|
+
latitude
|
2778
|
+
longitude
|
2779
|
+
}
|
2780
|
+
type
|
2781
|
+
fileType
|
2782
|
+
mimeType
|
2783
|
+
format
|
2784
|
+
formatName
|
2785
|
+
fileExtension
|
2786
|
+
fileName
|
2787
|
+
fileSize
|
2788
|
+
masterUri
|
2789
|
+
imageUri
|
2790
|
+
textUri
|
2791
|
+
audioUri
|
2792
|
+
transcriptUri
|
2793
|
+
summary
|
2794
|
+
customSummary
|
2795
|
+
keywords
|
2796
|
+
bullets
|
2797
|
+
headlines
|
2798
|
+
posts
|
2799
|
+
chapters
|
2800
|
+
questions
|
2801
|
+
quotes
|
2802
|
+
video {
|
2803
|
+
width
|
2804
|
+
height
|
2805
|
+
duration
|
2806
|
+
make
|
2807
|
+
model
|
2808
|
+
software
|
2809
|
+
title
|
2810
|
+
description
|
2811
|
+
keywords
|
2812
|
+
author
|
2813
|
+
}
|
2814
|
+
audio {
|
2815
|
+
keywords
|
2816
|
+
author
|
2817
|
+
series
|
2818
|
+
episode
|
2819
|
+
episodeType
|
2820
|
+
season
|
2821
|
+
publisher
|
2822
|
+
copyright
|
2823
|
+
genre
|
2824
|
+
title
|
2825
|
+
description
|
2826
|
+
bitrate
|
2827
|
+
channels
|
2828
|
+
sampleRate
|
2829
|
+
bitsPerSample
|
2830
|
+
duration
|
2831
|
+
}
|
2832
|
+
image {
|
2833
|
+
width
|
2834
|
+
height
|
2835
|
+
resolutionX
|
2836
|
+
resolutionY
|
2837
|
+
bitsPerComponent
|
2838
|
+
components
|
2839
|
+
projectionType
|
2840
|
+
orientation
|
2841
|
+
description
|
2842
|
+
make
|
2843
|
+
model
|
2844
|
+
software
|
2845
|
+
lens
|
2846
|
+
focalLength
|
2847
|
+
exposureTime
|
2848
|
+
fNumber
|
2849
|
+
iso
|
2850
|
+
heading
|
2851
|
+
pitch
|
2852
|
+
}
|
2853
|
+
document {
|
2854
|
+
title
|
2855
|
+
subject
|
2856
|
+
summary
|
2857
|
+
author
|
2858
|
+
publisher
|
2859
|
+
description
|
2860
|
+
keywords
|
2861
|
+
pageCount
|
2862
|
+
worksheetCount
|
2863
|
+
slideCount
|
2864
|
+
wordCount
|
2865
|
+
lineCount
|
2866
|
+
paragraphCount
|
2867
|
+
isEncrypted
|
2868
|
+
hasDigitalSignature
|
2869
|
+
}
|
2870
|
+
email {
|
2871
|
+
identifier
|
2872
|
+
threadIdentifier
|
2873
|
+
subject
|
2874
|
+
labels
|
2875
|
+
sensitivity
|
2876
|
+
priority
|
2877
|
+
importance
|
2878
|
+
from {
|
2879
|
+
name
|
2880
|
+
email
|
2881
|
+
givenName
|
2882
|
+
familyName
|
2883
|
+
}
|
2884
|
+
to {
|
2885
|
+
name
|
2886
|
+
email
|
2887
|
+
givenName
|
2888
|
+
familyName
|
2889
|
+
}
|
2890
|
+
cc {
|
2891
|
+
name
|
2892
|
+
email
|
2893
|
+
givenName
|
2894
|
+
familyName
|
2895
|
+
}
|
2896
|
+
bcc {
|
2897
|
+
name
|
2898
|
+
email
|
2899
|
+
givenName
|
2900
|
+
familyName
|
2901
|
+
}
|
2902
|
+
}
|
2903
|
+
issue {
|
2904
|
+
identifier
|
2905
|
+
title
|
2906
|
+
project
|
2907
|
+
team
|
2908
|
+
status
|
2909
|
+
priority
|
2910
|
+
type
|
2911
|
+
labels
|
2912
|
+
}
|
2913
|
+
package {
|
2914
|
+
fileCount
|
2915
|
+
folderCount
|
2916
|
+
isEncrypted
|
2917
|
+
}
|
2918
|
+
language {
|
2919
|
+
languages
|
2920
|
+
}
|
2921
|
+
feed {
|
2922
|
+
id
|
2923
|
+
name
|
2924
|
+
}
|
2925
|
+
links {
|
2926
|
+
uri
|
2927
|
+
linkType
|
2928
|
+
}
|
2929
|
+
workflow {
|
2930
|
+
id
|
2931
|
+
name
|
2932
|
+
}
|
2933
|
+
pages {
|
2934
|
+
index
|
2935
|
+
text
|
2936
|
+
relevance
|
2937
|
+
images {
|
2938
|
+
id
|
2939
|
+
mimeType
|
2940
|
+
data
|
2941
|
+
left
|
2942
|
+
right
|
2943
|
+
top
|
2944
|
+
bottom
|
2945
|
+
}
|
2946
|
+
chunks {
|
2947
|
+
index
|
2948
|
+
pageIndex
|
2949
|
+
rowIndex
|
2950
|
+
columnIndex
|
2951
|
+
confidence
|
2952
|
+
text
|
2953
|
+
role
|
2954
|
+
language
|
2955
|
+
relevance
|
2956
|
+
}
|
2957
|
+
}
|
2958
|
+
segments {
|
2959
|
+
startTime
|
2960
|
+
endTime
|
2961
|
+
text
|
2962
|
+
relevance
|
2963
|
+
}
|
2964
|
+
frames {
|
2965
|
+
index
|
2966
|
+
description
|
2967
|
+
text
|
2968
|
+
relevance
|
2969
|
+
}
|
2970
|
+
error
|
2971
|
+
observations {
|
2972
|
+
id
|
2973
|
+
type
|
2974
|
+
observable {
|
2975
|
+
id
|
2976
|
+
name
|
2977
|
+
}
|
2978
|
+
related {
|
2979
|
+
id
|
2980
|
+
name
|
2981
|
+
}
|
2982
|
+
relatedType
|
2983
|
+
relation
|
2984
|
+
occurrences {
|
2985
|
+
type
|
2986
|
+
confidence
|
2987
|
+
startTime
|
2988
|
+
endTime
|
2989
|
+
pageIndex
|
2990
|
+
boundingBox {
|
2991
|
+
left
|
2992
|
+
top
|
2993
|
+
width
|
2994
|
+
height
|
2995
|
+
}
|
2996
|
+
}
|
2997
|
+
state
|
2998
|
+
}
|
2999
|
+
}
|
3000
|
+
}
|
3001
|
+
}
|
3002
|
+
"""
|
3003
|
+
|
2750
3004
|
SCREENSHOT_PAGE_GQL = """
|
2751
3005
|
mutation ScreenshotPage($uri: URL!, $maximumHeight: Int, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $correlationId: String) {
|
2752
3006
|
screenshotPage(
|
@@ -0,0 +1,358 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import Any, List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
from .enums import (
|
10
|
+
ContentTypes,
|
11
|
+
EntityState,
|
12
|
+
FileTypes,
|
13
|
+
ImageProjectionTypes,
|
14
|
+
LinkTypes,
|
15
|
+
MailImportance,
|
16
|
+
MailPriority,
|
17
|
+
MailSensitivity,
|
18
|
+
ObservableTypes,
|
19
|
+
OccurrenceTypes,
|
20
|
+
OrientationTypes,
|
21
|
+
TextRoles,
|
22
|
+
)
|
23
|
+
|
24
|
+
|
25
|
+
class QueryContentsObservations(BaseModel):
|
26
|
+
contents: Optional["QueryContentsObservationsContents"]
|
27
|
+
|
28
|
+
|
29
|
+
class QueryContentsObservationsContents(BaseModel):
|
30
|
+
results: Optional[List[Optional["QueryContentsObservationsContentsResults"]]]
|
31
|
+
|
32
|
+
|
33
|
+
class QueryContentsObservationsContentsResults(BaseModel):
|
34
|
+
id: str
|
35
|
+
name: str
|
36
|
+
creation_date: Any = Field(alias="creationDate")
|
37
|
+
relevance: Optional[float]
|
38
|
+
owner: "QueryContentsObservationsContentsResultsOwner"
|
39
|
+
state: EntityState
|
40
|
+
original_date: Optional[Any] = Field(alias="originalDate")
|
41
|
+
finished_date: Optional[Any] = Field(alias="finishedDate")
|
42
|
+
workflow_duration: Optional[Any] = Field(alias="workflowDuration")
|
43
|
+
uri: Optional[Any]
|
44
|
+
description: Optional[str]
|
45
|
+
identifier: Optional[str]
|
46
|
+
address: Optional["QueryContentsObservationsContentsResultsAddress"]
|
47
|
+
location: Optional["QueryContentsObservationsContentsResultsLocation"]
|
48
|
+
type: Optional[ContentTypes]
|
49
|
+
file_type: Optional[FileTypes] = Field(alias="fileType")
|
50
|
+
mime_type: Optional[str] = Field(alias="mimeType")
|
51
|
+
format: Optional[str]
|
52
|
+
format_name: Optional[str] = Field(alias="formatName")
|
53
|
+
file_extension: Optional[str] = Field(alias="fileExtension")
|
54
|
+
file_name: Optional[str] = Field(alias="fileName")
|
55
|
+
file_size: Optional[Any] = Field(alias="fileSize")
|
56
|
+
master_uri: Optional[Any] = Field(alias="masterUri")
|
57
|
+
image_uri: Optional[Any] = Field(alias="imageUri")
|
58
|
+
text_uri: Optional[Any] = Field(alias="textUri")
|
59
|
+
audio_uri: Optional[Any] = Field(alias="audioUri")
|
60
|
+
transcript_uri: Optional[Any] = Field(alias="transcriptUri")
|
61
|
+
summary: Optional[str]
|
62
|
+
custom_summary: Optional[str] = Field(alias="customSummary")
|
63
|
+
keywords: Optional[List[str]]
|
64
|
+
bullets: Optional[List[str]]
|
65
|
+
headlines: Optional[List[str]]
|
66
|
+
posts: Optional[List[str]]
|
67
|
+
chapters: Optional[List[str]]
|
68
|
+
questions: Optional[List[str]]
|
69
|
+
quotes: Optional[List[str]]
|
70
|
+
video: Optional["QueryContentsObservationsContentsResultsVideo"]
|
71
|
+
audio: Optional["QueryContentsObservationsContentsResultsAudio"]
|
72
|
+
image: Optional["QueryContentsObservationsContentsResultsImage"]
|
73
|
+
document: Optional["QueryContentsObservationsContentsResultsDocument"]
|
74
|
+
email: Optional["QueryContentsObservationsContentsResultsEmail"]
|
75
|
+
issue: Optional["QueryContentsObservationsContentsResultsIssue"]
|
76
|
+
package: Optional["QueryContentsObservationsContentsResultsPackage"]
|
77
|
+
language: Optional["QueryContentsObservationsContentsResultsLanguage"]
|
78
|
+
feed: Optional["QueryContentsObservationsContentsResultsFeed"]
|
79
|
+
links: Optional[List["QueryContentsObservationsContentsResultsLinks"]]
|
80
|
+
workflow: Optional["QueryContentsObservationsContentsResultsWorkflow"]
|
81
|
+
pages: Optional[List["QueryContentsObservationsContentsResultsPages"]]
|
82
|
+
segments: Optional[List["QueryContentsObservationsContentsResultsSegments"]]
|
83
|
+
frames: Optional[List["QueryContentsObservationsContentsResultsFrames"]]
|
84
|
+
error: Optional[str]
|
85
|
+
observations: Optional[
|
86
|
+
List[Optional["QueryContentsObservationsContentsResultsObservations"]]
|
87
|
+
]
|
88
|
+
|
89
|
+
|
90
|
+
class QueryContentsObservationsContentsResultsOwner(BaseModel):
|
91
|
+
id: str
|
92
|
+
|
93
|
+
|
94
|
+
class QueryContentsObservationsContentsResultsAddress(BaseModel):
|
95
|
+
street_address: Optional[str] = Field(alias="streetAddress")
|
96
|
+
city: Optional[str]
|
97
|
+
region: Optional[str]
|
98
|
+
country: Optional[str]
|
99
|
+
postal_code: Optional[str] = Field(alias="postalCode")
|
100
|
+
|
101
|
+
|
102
|
+
class QueryContentsObservationsContentsResultsLocation(BaseModel):
|
103
|
+
latitude: Optional[float]
|
104
|
+
longitude: Optional[float]
|
105
|
+
|
106
|
+
|
107
|
+
class QueryContentsObservationsContentsResultsVideo(BaseModel):
|
108
|
+
width: Optional[int]
|
109
|
+
height: Optional[int]
|
110
|
+
duration: Optional[Any]
|
111
|
+
make: Optional[str]
|
112
|
+
model: Optional[str]
|
113
|
+
software: Optional[str]
|
114
|
+
title: Optional[str]
|
115
|
+
description: Optional[str]
|
116
|
+
keywords: Optional[List[Optional[str]]]
|
117
|
+
author: Optional[str]
|
118
|
+
|
119
|
+
|
120
|
+
class QueryContentsObservationsContentsResultsAudio(BaseModel):
|
121
|
+
keywords: Optional[List[Optional[str]]]
|
122
|
+
author: Optional[str]
|
123
|
+
series: Optional[str]
|
124
|
+
episode: Optional[str]
|
125
|
+
episode_type: Optional[str] = Field(alias="episodeType")
|
126
|
+
season: Optional[str]
|
127
|
+
publisher: Optional[str]
|
128
|
+
copyright: Optional[str]
|
129
|
+
genre: Optional[str]
|
130
|
+
title: Optional[str]
|
131
|
+
description: Optional[str]
|
132
|
+
bitrate: Optional[int]
|
133
|
+
channels: Optional[int]
|
134
|
+
sample_rate: Optional[int] = Field(alias="sampleRate")
|
135
|
+
bits_per_sample: Optional[int] = Field(alias="bitsPerSample")
|
136
|
+
duration: Optional[Any]
|
137
|
+
|
138
|
+
|
139
|
+
class QueryContentsObservationsContentsResultsImage(BaseModel):
|
140
|
+
width: Optional[int]
|
141
|
+
height: Optional[int]
|
142
|
+
resolution_x: Optional[int] = Field(alias="resolutionX")
|
143
|
+
resolution_y: Optional[int] = Field(alias="resolutionY")
|
144
|
+
bits_per_component: Optional[int] = Field(alias="bitsPerComponent")
|
145
|
+
components: Optional[int]
|
146
|
+
projection_type: Optional[ImageProjectionTypes] = Field(alias="projectionType")
|
147
|
+
orientation: Optional[OrientationTypes]
|
148
|
+
description: Optional[str]
|
149
|
+
make: Optional[str]
|
150
|
+
model: Optional[str]
|
151
|
+
software: Optional[str]
|
152
|
+
lens: Optional[str]
|
153
|
+
focal_length: Optional[float] = Field(alias="focalLength")
|
154
|
+
exposure_time: Optional[str] = Field(alias="exposureTime")
|
155
|
+
f_number: Optional[str] = Field(alias="fNumber")
|
156
|
+
iso: Optional[str]
|
157
|
+
heading: Optional[float]
|
158
|
+
pitch: Optional[float]
|
159
|
+
|
160
|
+
|
161
|
+
class QueryContentsObservationsContentsResultsDocument(BaseModel):
|
162
|
+
title: Optional[str]
|
163
|
+
subject: Optional[str]
|
164
|
+
summary: Optional[str]
|
165
|
+
author: Optional[str]
|
166
|
+
publisher: Optional[str]
|
167
|
+
description: Optional[str]
|
168
|
+
keywords: Optional[List[Optional[str]]]
|
169
|
+
page_count: Optional[int] = Field(alias="pageCount")
|
170
|
+
worksheet_count: Optional[int] = Field(alias="worksheetCount")
|
171
|
+
slide_count: Optional[int] = Field(alias="slideCount")
|
172
|
+
word_count: Optional[int] = Field(alias="wordCount")
|
173
|
+
line_count: Optional[int] = Field(alias="lineCount")
|
174
|
+
paragraph_count: Optional[int] = Field(alias="paragraphCount")
|
175
|
+
is_encrypted: Optional[bool] = Field(alias="isEncrypted")
|
176
|
+
has_digital_signature: Optional[bool] = Field(alias="hasDigitalSignature")
|
177
|
+
|
178
|
+
|
179
|
+
class QueryContentsObservationsContentsResultsEmail(BaseModel):
|
180
|
+
identifier: Optional[str]
|
181
|
+
thread_identifier: Optional[str] = Field(alias="threadIdentifier")
|
182
|
+
subject: Optional[str]
|
183
|
+
labels: Optional[List[Optional[str]]]
|
184
|
+
sensitivity: Optional[MailSensitivity]
|
185
|
+
priority: Optional[MailPriority]
|
186
|
+
importance: Optional[MailImportance]
|
187
|
+
from_: Optional[
|
188
|
+
List[Optional["QueryContentsObservationsContentsResultsEmailFrom"]]
|
189
|
+
] = Field(alias="from")
|
190
|
+
to: Optional[List[Optional["QueryContentsObservationsContentsResultsEmailTo"]]]
|
191
|
+
cc: Optional[List[Optional["QueryContentsObservationsContentsResultsEmailCc"]]]
|
192
|
+
bcc: Optional[List[Optional["QueryContentsObservationsContentsResultsEmailBcc"]]]
|
193
|
+
|
194
|
+
|
195
|
+
class QueryContentsObservationsContentsResultsEmailFrom(BaseModel):
|
196
|
+
name: Optional[str]
|
197
|
+
email: Optional[str]
|
198
|
+
given_name: Optional[str] = Field(alias="givenName")
|
199
|
+
family_name: Optional[str] = Field(alias="familyName")
|
200
|
+
|
201
|
+
|
202
|
+
class QueryContentsObservationsContentsResultsEmailTo(BaseModel):
|
203
|
+
name: Optional[str]
|
204
|
+
email: Optional[str]
|
205
|
+
given_name: Optional[str] = Field(alias="givenName")
|
206
|
+
family_name: Optional[str] = Field(alias="familyName")
|
207
|
+
|
208
|
+
|
209
|
+
class QueryContentsObservationsContentsResultsEmailCc(BaseModel):
|
210
|
+
name: Optional[str]
|
211
|
+
email: Optional[str]
|
212
|
+
given_name: Optional[str] = Field(alias="givenName")
|
213
|
+
family_name: Optional[str] = Field(alias="familyName")
|
214
|
+
|
215
|
+
|
216
|
+
class QueryContentsObservationsContentsResultsEmailBcc(BaseModel):
|
217
|
+
name: Optional[str]
|
218
|
+
email: Optional[str]
|
219
|
+
given_name: Optional[str] = Field(alias="givenName")
|
220
|
+
family_name: Optional[str] = Field(alias="familyName")
|
221
|
+
|
222
|
+
|
223
|
+
class QueryContentsObservationsContentsResultsIssue(BaseModel):
|
224
|
+
identifier: Optional[str]
|
225
|
+
title: Optional[str]
|
226
|
+
project: Optional[str]
|
227
|
+
team: Optional[str]
|
228
|
+
status: Optional[str]
|
229
|
+
priority: Optional[str]
|
230
|
+
type: Optional[str]
|
231
|
+
labels: Optional[List[Optional[str]]]
|
232
|
+
|
233
|
+
|
234
|
+
class QueryContentsObservationsContentsResultsPackage(BaseModel):
|
235
|
+
file_count: Optional[int] = Field(alias="fileCount")
|
236
|
+
folder_count: Optional[int] = Field(alias="folderCount")
|
237
|
+
is_encrypted: Optional[bool] = Field(alias="isEncrypted")
|
238
|
+
|
239
|
+
|
240
|
+
class QueryContentsObservationsContentsResultsLanguage(BaseModel):
|
241
|
+
languages: Optional[List[Optional[str]]]
|
242
|
+
|
243
|
+
|
244
|
+
class QueryContentsObservationsContentsResultsFeed(BaseModel):
|
245
|
+
id: str
|
246
|
+
name: str
|
247
|
+
|
248
|
+
|
249
|
+
class QueryContentsObservationsContentsResultsLinks(BaseModel):
|
250
|
+
uri: Optional[Any]
|
251
|
+
link_type: Optional[LinkTypes] = Field(alias="linkType")
|
252
|
+
|
253
|
+
|
254
|
+
class QueryContentsObservationsContentsResultsWorkflow(BaseModel):
|
255
|
+
id: str
|
256
|
+
name: str
|
257
|
+
|
258
|
+
|
259
|
+
class QueryContentsObservationsContentsResultsPages(BaseModel):
|
260
|
+
index: Optional[int]
|
261
|
+
text: Optional[str]
|
262
|
+
relevance: Optional[float]
|
263
|
+
images: Optional[
|
264
|
+
List[Optional["QueryContentsObservationsContentsResultsPagesImages"]]
|
265
|
+
]
|
266
|
+
chunks: Optional[
|
267
|
+
List[Optional["QueryContentsObservationsContentsResultsPagesChunks"]]
|
268
|
+
]
|
269
|
+
|
270
|
+
|
271
|
+
class QueryContentsObservationsContentsResultsPagesImages(BaseModel):
|
272
|
+
id: Optional[str]
|
273
|
+
mime_type: Optional[str] = Field(alias="mimeType")
|
274
|
+
data: Optional[str]
|
275
|
+
left: Optional[int]
|
276
|
+
right: Optional[int]
|
277
|
+
top: Optional[int]
|
278
|
+
bottom: Optional[int]
|
279
|
+
|
280
|
+
|
281
|
+
class QueryContentsObservationsContentsResultsPagesChunks(BaseModel):
|
282
|
+
index: Optional[int]
|
283
|
+
page_index: Optional[int] = Field(alias="pageIndex")
|
284
|
+
row_index: Optional[int] = Field(alias="rowIndex")
|
285
|
+
column_index: Optional[int] = Field(alias="columnIndex")
|
286
|
+
confidence: Optional[float]
|
287
|
+
text: Optional[str]
|
288
|
+
role: Optional[TextRoles]
|
289
|
+
language: Optional[str]
|
290
|
+
relevance: Optional[float]
|
291
|
+
|
292
|
+
|
293
|
+
class QueryContentsObservationsContentsResultsSegments(BaseModel):
|
294
|
+
start_time: Optional[Any] = Field(alias="startTime")
|
295
|
+
end_time: Optional[Any] = Field(alias="endTime")
|
296
|
+
text: Optional[str]
|
297
|
+
relevance: Optional[float]
|
298
|
+
|
299
|
+
|
300
|
+
class QueryContentsObservationsContentsResultsFrames(BaseModel):
|
301
|
+
index: Optional[int]
|
302
|
+
description: Optional[str]
|
303
|
+
text: Optional[str]
|
304
|
+
relevance: Optional[float]
|
305
|
+
|
306
|
+
|
307
|
+
class QueryContentsObservationsContentsResultsObservations(BaseModel):
|
308
|
+
id: str
|
309
|
+
type: ObservableTypes
|
310
|
+
observable: "QueryContentsObservationsContentsResultsObservationsObservable"
|
311
|
+
related: Optional["QueryContentsObservationsContentsResultsObservationsRelated"]
|
312
|
+
related_type: Optional[ObservableTypes] = Field(alias="relatedType")
|
313
|
+
relation: Optional[str]
|
314
|
+
occurrences: Optional[
|
315
|
+
List[
|
316
|
+
Optional["QueryContentsObservationsContentsResultsObservationsOccurrences"]
|
317
|
+
]
|
318
|
+
]
|
319
|
+
state: EntityState
|
320
|
+
|
321
|
+
|
322
|
+
class QueryContentsObservationsContentsResultsObservationsObservable(BaseModel):
|
323
|
+
id: str
|
324
|
+
name: Optional[str]
|
325
|
+
|
326
|
+
|
327
|
+
class QueryContentsObservationsContentsResultsObservationsRelated(BaseModel):
|
328
|
+
id: str
|
329
|
+
name: Optional[str]
|
330
|
+
|
331
|
+
|
332
|
+
class QueryContentsObservationsContentsResultsObservationsOccurrences(BaseModel):
|
333
|
+
type: Optional[OccurrenceTypes]
|
334
|
+
confidence: Optional[float]
|
335
|
+
start_time: Optional[Any] = Field(alias="startTime")
|
336
|
+
end_time: Optional[Any] = Field(alias="endTime")
|
337
|
+
page_index: Optional[int] = Field(alias="pageIndex")
|
338
|
+
bounding_box: Optional[
|
339
|
+
"QueryContentsObservationsContentsResultsObservationsOccurrencesBoundingBox"
|
340
|
+
] = Field(alias="boundingBox")
|
341
|
+
|
342
|
+
|
343
|
+
class QueryContentsObservationsContentsResultsObservationsOccurrencesBoundingBox(
|
344
|
+
BaseModel
|
345
|
+
):
|
346
|
+
left: Optional[float]
|
347
|
+
top: Optional[float]
|
348
|
+
width: Optional[float]
|
349
|
+
height: Optional[float]
|
350
|
+
|
351
|
+
|
352
|
+
QueryContentsObservations.model_rebuild()
|
353
|
+
QueryContentsObservationsContents.model_rebuild()
|
354
|
+
QueryContentsObservationsContentsResults.model_rebuild()
|
355
|
+
QueryContentsObservationsContentsResultsEmail.model_rebuild()
|
356
|
+
QueryContentsObservationsContentsResultsPages.model_rebuild()
|
357
|
+
QueryContentsObservationsContentsResultsObservations.model_rebuild()
|
358
|
+
QueryContentsObservationsContentsResultsObservationsOccurrences.model_rebuild()
|
{graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/RECORD
RENAMED
@@ -1,13 +1,13 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=g2znIWEb6fIwMKGm5G_BY4VHdaZi6hLO4Y6FdBjNesM,2389
|
3
|
-
graphlit_api/__init__.py,sha256=
|
3
|
+
graphlit_api/__init__.py,sha256=e-4GtFEyeYzLVDM-RpbTP15hDry7WfKi4FTQQ2DvgCU,201010
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=U2grdqvzeFMjTzM5ACTEXV2Rk-R_WAwdslzWAtZb6i8,6489
|
6
6
|
graphlit_api/async_base_client.py,sha256=v0KUVwe2_RIQa8Mn7l_yD5McUe7B03vhclJ9SP4XGgw,12578
|
7
7
|
graphlit_api/base_model.py,sha256=o2d-DixASFCGztr3rTiGX0AwgFu7Awr7EgD70FI8a-I,620
|
8
8
|
graphlit_api/branch_conversation.py,sha256=iU3IsoM526AHUHjX0ODAyOPTpyS9N5RqSdytoAOmKbU,539
|
9
9
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
10
|
-
graphlit_api/client.py,sha256=
|
10
|
+
graphlit_api/client.py,sha256=D-JSeinL9PlMfF1Ku1GcFxLzLqTnL35sEhq6Rg-yV4Y,206254
|
11
11
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
12
12
|
graphlit_api/complete_conversation.py,sha256=39v86YLrm9IGQVcsRHUyxoTkiT1sNoVPQZzim5FxSZo,16844
|
13
13
|
graphlit_api/continue_conversation.py,sha256=Ba_ufN-4Ji6ZjznlilvS85xxkdV5JGpnuEQUU-qGXBk,16844
|
@@ -209,7 +209,7 @@ graphlit_api/lookup_contents.py,sha256=avxMUE3lBigZdBn_M9Ybz3RpmyLYiIOk4GGx50ijH
|
|
209
209
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
210
210
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
211
211
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
212
|
-
graphlit_api/operations.py,sha256=
|
212
|
+
graphlit_api/operations.py,sha256=QctpdVxcmEsw3zuJDbNeGsFv4TTrtuIlNrFtUL4LSJM,201026
|
213
213
|
graphlit_api/prompt.py,sha256=jBlM3ywGnbVPYSBHMDPAy5ZlDDtndRsHnV7twcwLX1g,6203
|
214
214
|
graphlit_api/prompt_conversation.py,sha256=JMiDfxFaixz63wXcT-h948c5x2Uc6PgB3D7wORltkhU,16458
|
215
215
|
graphlit_api/prompt_specifications.py,sha256=GFLRlyp5pISfB0PVMw3RPCwGvqkA3qI5M2NiXXu2aT0,7090
|
@@ -222,6 +222,7 @@ graphlit_api/query_collections.py,sha256=IQv3XSV7XxMyRRQUGKuIY0w5cBfYr212dHlkDGd
|
|
222
222
|
graphlit_api/query_contents.py,sha256=pnUfcl-LHJytFjTmIfh0E4m0XwrU0R0UszOHWRd7VLE,10135
|
223
223
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
224
224
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
225
|
+
graphlit_api/query_contents_observations.py,sha256=_bEUVkAltGyVMKL0dxEyVDmMLyLshZtfrYRDAs4ftFU,12594
|
225
226
|
graphlit_api/query_conversations.py,sha256=_uO9SRB7q7M-IlTbL_0RCk3RkHMLFPKKTEtsLaKqgu4,19815
|
226
227
|
graphlit_api/query_credits.py,sha256=6uJqn4iYfBfsUtSMTCSuV4d2VTiYR4gR5tEeDH5Cf9o,1396
|
227
228
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
@@ -307,8 +308,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
|
|
307
308
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
308
309
|
graphlit_api/upsert_workflow.py,sha256=8oAjaG884YBRsfXDhoSeWxJL0oktMQomqU7xCoXso-M,16588
|
309
310
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
310
|
-
graphlit_client-1.0.
|
311
|
-
graphlit_client-1.0.
|
312
|
-
graphlit_client-1.0.
|
313
|
-
graphlit_client-1.0.
|
314
|
-
graphlit_client-1.0.
|
311
|
+
graphlit_client-1.0.20250622002.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
312
|
+
graphlit_client-1.0.20250622002.dist-info/METADATA,sha256=FM1zTFoHZqT0aQTnLEjTYGX3FR2woCt7aC2KBwqgM_k,3408
|
313
|
+
graphlit_client-1.0.20250622002.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
314
|
+
graphlit_client-1.0.20250622002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
315
|
+
graphlit_client-1.0.20250622002.dist-info/RECORD,,
|
{graphlit_client-1.0.20250622001.dist-info → graphlit_client-1.0.20250622002.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|