graphlit-client 1.0.20260129002__py3-none-any.whl → 1.0.20260130001__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 +62 -0
- graphlit_api/client.py +24 -0
- graphlit_api/enums.py +7 -0
- graphlit_api/get_content.py +68 -0
- graphlit_api/get_conversation.py +1 -0
- graphlit_api/get_fact.py +8 -1
- graphlit_api/get_specification.py +3 -0
- graphlit_api/ingest_batch.py +1 -0
- graphlit_api/ingest_encoded_file.py +1 -0
- graphlit_api/ingest_event.py +1 -0
- graphlit_api/ingest_memory.py +1 -0
- graphlit_api/ingest_text.py +1 -0
- graphlit_api/ingest_text_batch.py +1 -0
- graphlit_api/ingest_uri.py +1 -0
- graphlit_api/input_types.py +27 -0
- graphlit_api/lookup_contents.py +76 -0
- graphlit_api/operations.py +147 -0
- graphlit_api/query_contents_observations.py +1 -0
- graphlit_api/query_conversations.py +1 -0
- graphlit_api/query_conversations_graph.py +40 -0
- graphlit_api/query_facts.py +8 -1
- graphlit_api/query_facts_clusters.py +8 -1
- graphlit_api/query_specifications.py +3 -0
- graphlit_api/retrieve_facts.py +8 -1
- graphlit_api/screenshot_page.py +1 -0
- graphlit_api/update_content.py +1 -0
- {graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.dist-info}/RECORD +31 -30
- {graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.dist-info}/top_level.txt +0 -0
graphlit_api/operations.py
CHANGED
|
@@ -263,6 +263,7 @@ __all__ = [
|
|
|
263
263
|
"QUERY_CONTENTS_GRAPH_GQL",
|
|
264
264
|
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
|
265
265
|
"QUERY_CONVERSATIONS_GQL",
|
|
266
|
+
"QUERY_CONVERSATIONS_GRAPH_GQL",
|
|
266
267
|
"QUERY_CREDITS_GQL",
|
|
267
268
|
"QUERY_DISCORD_CHANNELS_GQL",
|
|
268
269
|
"QUERY_DISCORD_GUILDS_GQL",
|
|
@@ -2159,6 +2160,7 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
|
2159
2160
|
startTime
|
|
2160
2161
|
endTime
|
|
2161
2162
|
pageIndex
|
|
2163
|
+
turnIndex
|
|
2162
2164
|
boundingBox {
|
|
2163
2165
|
left
|
|
2164
2166
|
top
|
|
@@ -2168,6 +2170,49 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
|
2168
2170
|
}
|
|
2169
2171
|
state
|
|
2170
2172
|
}
|
|
2173
|
+
facts {
|
|
2174
|
+
id
|
|
2175
|
+
text
|
|
2176
|
+
validAt
|
|
2177
|
+
invalidAt
|
|
2178
|
+
state
|
|
2179
|
+
mentions {
|
|
2180
|
+
type
|
|
2181
|
+
observable {
|
|
2182
|
+
id
|
|
2183
|
+
name
|
|
2184
|
+
}
|
|
2185
|
+
start
|
|
2186
|
+
end
|
|
2187
|
+
}
|
|
2188
|
+
assertions {
|
|
2189
|
+
text
|
|
2190
|
+
mentions {
|
|
2191
|
+
type
|
|
2192
|
+
observable {
|
|
2193
|
+
id
|
|
2194
|
+
name
|
|
2195
|
+
}
|
|
2196
|
+
start
|
|
2197
|
+
end
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
feeds {
|
|
2201
|
+
id
|
|
2202
|
+
name
|
|
2203
|
+
}
|
|
2204
|
+
content {
|
|
2205
|
+
id
|
|
2206
|
+
name
|
|
2207
|
+
}
|
|
2208
|
+
conversation {
|
|
2209
|
+
id
|
|
2210
|
+
name
|
|
2211
|
+
}
|
|
2212
|
+
sourceType
|
|
2213
|
+
category
|
|
2214
|
+
confidence
|
|
2215
|
+
}
|
|
2171
2216
|
workflow {
|
|
2172
2217
|
id
|
|
2173
2218
|
name
|
|
@@ -2254,6 +2299,7 @@ mutation IngestBatch($uris: [URL!]!, $workflow: EntityReferenceInput, $collectio
|
|
|
2254
2299
|
startTime
|
|
2255
2300
|
endTime
|
|
2256
2301
|
pageIndex
|
|
2302
|
+
turnIndex
|
|
2257
2303
|
boundingBox {
|
|
2258
2304
|
left
|
|
2259
2305
|
top
|
|
@@ -2314,6 +2360,7 @@ mutation IngestEncodedFile($name: String!, $data: String!, $mimeType: String!, $
|
|
|
2314
2360
|
startTime
|
|
2315
2361
|
endTime
|
|
2316
2362
|
pageIndex
|
|
2363
|
+
turnIndex
|
|
2317
2364
|
boundingBox {
|
|
2318
2365
|
left
|
|
2319
2366
|
top
|
|
@@ -2370,6 +2417,7 @@ mutation IngestEvent($markdown: String!, $name: String, $description: String, $e
|
|
|
2370
2417
|
startTime
|
|
2371
2418
|
endTime
|
|
2372
2419
|
pageIndex
|
|
2420
|
+
turnIndex
|
|
2373
2421
|
boundingBox {
|
|
2374
2422
|
left
|
|
2375
2423
|
top
|
|
@@ -2425,6 +2473,7 @@ mutation IngestMemory($text: String!, $name: String, $textType: TextTypes, $id:
|
|
|
2425
2473
|
startTime
|
|
2426
2474
|
endTime
|
|
2427
2475
|
pageIndex
|
|
2476
|
+
turnIndex
|
|
2428
2477
|
boundingBox {
|
|
2429
2478
|
left
|
|
2430
2479
|
top
|
|
@@ -2484,6 +2533,7 @@ mutation IngestText($text: String!, $name: String, $textType: TextTypes, $uri: U
|
|
|
2484
2533
|
startTime
|
|
2485
2534
|
endTime
|
|
2486
2535
|
pageIndex
|
|
2536
|
+
turnIndex
|
|
2487
2537
|
boundingBox {
|
|
2488
2538
|
left
|
|
2489
2539
|
top
|
|
@@ -2538,6 +2588,7 @@ mutation IngestTextBatch($batch: [TextContentInput!]!, $textType: TextTypes, $wo
|
|
|
2538
2588
|
startTime
|
|
2539
2589
|
endTime
|
|
2540
2590
|
pageIndex
|
|
2591
|
+
turnIndex
|
|
2541
2592
|
boundingBox {
|
|
2542
2593
|
left
|
|
2543
2594
|
top
|
|
@@ -2596,6 +2647,7 @@ mutation IngestUri($name: String, $uri: URL!, $id: ID, $mimeType: String, $ident
|
|
|
2596
2647
|
startTime
|
|
2597
2648
|
endTime
|
|
2598
2649
|
pageIndex
|
|
2650
|
+
turnIndex
|
|
2599
2651
|
boundingBox {
|
|
2600
2652
|
left
|
|
2601
2653
|
top
|
|
@@ -3017,6 +3069,7 @@ query LookupContents($ids: [ID!]!, $correlationId: String) {
|
|
|
3017
3069
|
startTime
|
|
3018
3070
|
endTime
|
|
3019
3071
|
pageIndex
|
|
3072
|
+
turnIndex
|
|
3020
3073
|
boundingBox {
|
|
3021
3074
|
left
|
|
3022
3075
|
top
|
|
@@ -3026,6 +3079,49 @@ query LookupContents($ids: [ID!]!, $correlationId: String) {
|
|
|
3026
3079
|
}
|
|
3027
3080
|
state
|
|
3028
3081
|
}
|
|
3082
|
+
facts {
|
|
3083
|
+
id
|
|
3084
|
+
text
|
|
3085
|
+
validAt
|
|
3086
|
+
invalidAt
|
|
3087
|
+
state
|
|
3088
|
+
mentions {
|
|
3089
|
+
type
|
|
3090
|
+
observable {
|
|
3091
|
+
id
|
|
3092
|
+
name
|
|
3093
|
+
}
|
|
3094
|
+
start
|
|
3095
|
+
end
|
|
3096
|
+
}
|
|
3097
|
+
assertions {
|
|
3098
|
+
text
|
|
3099
|
+
mentions {
|
|
3100
|
+
type
|
|
3101
|
+
observable {
|
|
3102
|
+
id
|
|
3103
|
+
name
|
|
3104
|
+
}
|
|
3105
|
+
start
|
|
3106
|
+
end
|
|
3107
|
+
}
|
|
3108
|
+
}
|
|
3109
|
+
feeds {
|
|
3110
|
+
id
|
|
3111
|
+
name
|
|
3112
|
+
}
|
|
3113
|
+
content {
|
|
3114
|
+
id
|
|
3115
|
+
name
|
|
3116
|
+
}
|
|
3117
|
+
conversation {
|
|
3118
|
+
id
|
|
3119
|
+
name
|
|
3120
|
+
}
|
|
3121
|
+
sourceType
|
|
3122
|
+
category
|
|
3123
|
+
confidence
|
|
3124
|
+
}
|
|
3029
3125
|
workflow {
|
|
3030
3126
|
id
|
|
3031
3127
|
name
|
|
@@ -4196,6 +4292,7 @@ query QueryContentsObservations($filter: ContentFilter, $correlationId: String)
|
|
|
4196
4292
|
startTime
|
|
4197
4293
|
endTime
|
|
4198
4294
|
pageIndex
|
|
4295
|
+
turnIndex
|
|
4199
4296
|
boundingBox {
|
|
4200
4297
|
left
|
|
4201
4298
|
top
|
|
@@ -4317,6 +4414,7 @@ mutation ScreenshotPage($uri: URL!, $maximumHeight: Int, $isSynchronous: Boolean
|
|
|
4317
4414
|
startTime
|
|
4318
4415
|
endTime
|
|
4319
4416
|
pageIndex
|
|
4417
|
+
turnIndex
|
|
4320
4418
|
boundingBox {
|
|
4321
4419
|
left
|
|
4322
4420
|
top
|
|
@@ -4413,6 +4511,7 @@ mutation UpdateContent($content: ContentUpdateInput!) {
|
|
|
4413
4511
|
startTime
|
|
4414
4512
|
endTime
|
|
4415
4513
|
pageIndex
|
|
4514
|
+
turnIndex
|
|
4416
4515
|
boundingBox {
|
|
4417
4516
|
left
|
|
4418
4517
|
top
|
|
@@ -6012,6 +6111,7 @@ query GetConversation($id: ID!, $correlationId: String) {
|
|
|
6012
6111
|
collectionMode
|
|
6013
6112
|
observationMode
|
|
6014
6113
|
}
|
|
6114
|
+
summary
|
|
6015
6115
|
}
|
|
6016
6116
|
}
|
|
6017
6117
|
"""
|
|
@@ -6992,6 +7092,27 @@ query QueryConversations($filter: ConversationFilter, $correlationId: String) {
|
|
|
6992
7092
|
collectionMode
|
|
6993
7093
|
observationMode
|
|
6994
7094
|
}
|
|
7095
|
+
summary
|
|
7096
|
+
}
|
|
7097
|
+
}
|
|
7098
|
+
}
|
|
7099
|
+
"""
|
|
7100
|
+
|
|
7101
|
+
QUERY_CONVERSATIONS_GRAPH_GQL = """
|
|
7102
|
+
query QueryConversationsGraph($filter: ConversationFilter, $graph: ConversationGraphInput, $correlationId: String) {
|
|
7103
|
+
conversations(filter: $filter, graph: $graph, correlationId: $correlationId) {
|
|
7104
|
+
graph {
|
|
7105
|
+
nodes {
|
|
7106
|
+
id
|
|
7107
|
+
name
|
|
7108
|
+
type
|
|
7109
|
+
metadata
|
|
7110
|
+
}
|
|
7111
|
+
edges {
|
|
7112
|
+
from
|
|
7113
|
+
to
|
|
7114
|
+
relation
|
|
7115
|
+
}
|
|
6995
7116
|
}
|
|
6996
7117
|
}
|
|
6997
7118
|
}
|
|
@@ -7056,6 +7177,11 @@ mutation RetrieveFacts($prompt: String!, $filter: FactFilter, $correlationId: St
|
|
|
7056
7177
|
id
|
|
7057
7178
|
name
|
|
7058
7179
|
}
|
|
7180
|
+
conversation {
|
|
7181
|
+
id
|
|
7182
|
+
name
|
|
7183
|
+
}
|
|
7184
|
+
sourceType
|
|
7059
7185
|
category
|
|
7060
7186
|
confidence
|
|
7061
7187
|
}
|
|
@@ -8131,6 +8257,11 @@ query GetFact($id: ID!, $correlationId: String) {
|
|
|
8131
8257
|
id
|
|
8132
8258
|
name
|
|
8133
8259
|
}
|
|
8260
|
+
conversation {
|
|
8261
|
+
id
|
|
8262
|
+
name
|
|
8263
|
+
}
|
|
8264
|
+
sourceType
|
|
8134
8265
|
category
|
|
8135
8266
|
confidence
|
|
8136
8267
|
}
|
|
@@ -8179,6 +8310,11 @@ query QueryFacts($filter: FactFilter, $correlationId: String) {
|
|
|
8179
8310
|
id
|
|
8180
8311
|
name
|
|
8181
8312
|
}
|
|
8313
|
+
conversation {
|
|
8314
|
+
id
|
|
8315
|
+
name
|
|
8316
|
+
}
|
|
8317
|
+
sourceType
|
|
8182
8318
|
category
|
|
8183
8319
|
confidence
|
|
8184
8320
|
}
|
|
@@ -8228,6 +8364,11 @@ query QueryFactsClusters($filter: FactFilter, $clusters: EntityClustersInput, $c
|
|
|
8228
8364
|
id
|
|
8229
8365
|
name
|
|
8230
8366
|
}
|
|
8367
|
+
conversation {
|
|
8368
|
+
id
|
|
8369
|
+
name
|
|
8370
|
+
}
|
|
8371
|
+
sourceType
|
|
8231
8372
|
category
|
|
8232
8373
|
confidence
|
|
8233
8374
|
}
|
|
@@ -15780,6 +15921,9 @@ query GetSpecification($id: ID!, $correlationId: String) {
|
|
|
15780
15921
|
embedCitations
|
|
15781
15922
|
flattenCitations
|
|
15782
15923
|
enableFacets
|
|
15924
|
+
enableSummarization
|
|
15925
|
+
enableEntityExtraction
|
|
15926
|
+
enableFactExtraction
|
|
15783
15927
|
messagesWeight
|
|
15784
15928
|
contentsWeight
|
|
15785
15929
|
}
|
|
@@ -16165,6 +16309,9 @@ query QuerySpecifications($filter: SpecificationFilter, $correlationId: String)
|
|
|
16165
16309
|
embedCitations
|
|
16166
16310
|
flattenCitations
|
|
16167
16311
|
enableFacets
|
|
16312
|
+
enableSummarization
|
|
16313
|
+
enableEntityExtraction
|
|
16314
|
+
enableFactExtraction
|
|
16168
16315
|
messagesWeight
|
|
16169
16316
|
contentsWeight
|
|
16170
16317
|
}
|
|
@@ -564,6 +564,7 @@ class QueryContentsObservationsContentsResultsObservationsOccurrences(BaseModel)
|
|
|
564
564
|
start_time: Optional[Any] = Field(alias="startTime")
|
|
565
565
|
end_time: Optional[Any] = Field(alias="endTime")
|
|
566
566
|
page_index: Optional[int] = Field(alias="pageIndex")
|
|
567
|
+
turn_index: Optional[int] = Field(alias="turnIndex")
|
|
567
568
|
bounding_box: Optional[
|
|
568
569
|
"QueryContentsObservationsContentsResultsObservationsOccurrencesBoundingBox"
|
|
569
570
|
] = Field(alias="boundingBox")
|
|
@@ -49,6 +49,7 @@ class QueryConversationsConversationsResults(BaseModel):
|
|
|
49
49
|
augmented_filter: Optional[
|
|
50
50
|
"QueryConversationsConversationsResultsAugmentedFilter"
|
|
51
51
|
] = Field(alias="augmentedFilter")
|
|
52
|
+
summary: Optional[str]
|
|
52
53
|
|
|
53
54
|
|
|
54
55
|
class QueryConversationsConversationsResultsOwner(BaseModel):
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: ./documents
|
|
3
|
+
|
|
4
|
+
from typing import Optional
|
|
5
|
+
|
|
6
|
+
from pydantic import Field
|
|
7
|
+
|
|
8
|
+
from .base_model import BaseModel
|
|
9
|
+
from .enums import EntityTypes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class QueryConversationsGraph(BaseModel):
|
|
13
|
+
conversations: Optional["QueryConversationsGraphConversations"]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class QueryConversationsGraphConversations(BaseModel):
|
|
17
|
+
graph: Optional["QueryConversationsGraphConversationsGraph"]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class QueryConversationsGraphConversationsGraph(BaseModel):
|
|
21
|
+
nodes: Optional[list[Optional["QueryConversationsGraphConversationsGraphNodes"]]]
|
|
22
|
+
edges: Optional[list[Optional["QueryConversationsGraphConversationsGraphEdges"]]]
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class QueryConversationsGraphConversationsGraphNodes(BaseModel):
|
|
26
|
+
id: str
|
|
27
|
+
name: str
|
|
28
|
+
type: EntityTypes
|
|
29
|
+
metadata: Optional[str]
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class QueryConversationsGraphConversationsGraphEdges(BaseModel):
|
|
33
|
+
from_: str = Field(alias="from")
|
|
34
|
+
to: str
|
|
35
|
+
relation: Optional[str]
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
QueryConversationsGraph.model_rebuild()
|
|
39
|
+
QueryConversationsGraphConversations.model_rebuild()
|
|
40
|
+
QueryConversationsGraphConversationsGraph.model_rebuild()
|
graphlit_api/query_facts.py
CHANGED
|
@@ -6,7 +6,7 @@ from typing import Any, Optional
|
|
|
6
6
|
from pydantic import Field
|
|
7
7
|
|
|
8
8
|
from .base_model import BaseModel
|
|
9
|
-
from .enums import FactCategory, ObservableTypes
|
|
9
|
+
from .enums import FactCategory, ObservableTypes, SourceTypes
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class QueryFacts(BaseModel):
|
|
@@ -29,6 +29,8 @@ class QueryFactsFactsResults(BaseModel):
|
|
|
29
29
|
assertions: Optional[list[Optional["QueryFactsFactsResultsAssertions"]]]
|
|
30
30
|
feeds: Optional[list[Optional["QueryFactsFactsResultsFeeds"]]]
|
|
31
31
|
content: Optional["QueryFactsFactsResultsContent"]
|
|
32
|
+
conversation: Optional["QueryFactsFactsResultsConversation"]
|
|
33
|
+
source_type: Optional[SourceTypes] = Field(alias="sourceType")
|
|
32
34
|
category: Optional[FactCategory]
|
|
33
35
|
confidence: Optional[float]
|
|
34
36
|
|
|
@@ -76,6 +78,11 @@ class QueryFactsFactsResultsContent(BaseModel):
|
|
|
76
78
|
name: str
|
|
77
79
|
|
|
78
80
|
|
|
81
|
+
class QueryFactsFactsResultsConversation(BaseModel):
|
|
82
|
+
id: str
|
|
83
|
+
name: str
|
|
84
|
+
|
|
85
|
+
|
|
79
86
|
QueryFacts.model_rebuild()
|
|
80
87
|
QueryFactsFacts.model_rebuild()
|
|
81
88
|
QueryFactsFactsResults.model_rebuild()
|
|
@@ -6,7 +6,7 @@ from typing import Any, Optional
|
|
|
6
6
|
from pydantic import Field
|
|
7
7
|
|
|
8
8
|
from .base_model import BaseModel
|
|
9
|
-
from .enums import FactCategory, ObservableTypes
|
|
9
|
+
from .enums import FactCategory, ObservableTypes, SourceTypes
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class QueryFactsClusters(BaseModel):
|
|
@@ -30,6 +30,8 @@ class QueryFactsClustersFactsResults(BaseModel):
|
|
|
30
30
|
assertions: Optional[list[Optional["QueryFactsClustersFactsResultsAssertions"]]]
|
|
31
31
|
feeds: Optional[list[Optional["QueryFactsClustersFactsResultsFeeds"]]]
|
|
32
32
|
content: Optional["QueryFactsClustersFactsResultsContent"]
|
|
33
|
+
conversation: Optional["QueryFactsClustersFactsResultsConversation"]
|
|
34
|
+
source_type: Optional[SourceTypes] = Field(alias="sourceType")
|
|
33
35
|
category: Optional[FactCategory]
|
|
34
36
|
confidence: Optional[float]
|
|
35
37
|
|
|
@@ -79,6 +81,11 @@ class QueryFactsClustersFactsResultsContent(BaseModel):
|
|
|
79
81
|
name: str
|
|
80
82
|
|
|
81
83
|
|
|
84
|
+
class QueryFactsClustersFactsResultsConversation(BaseModel):
|
|
85
|
+
id: str
|
|
86
|
+
name: str
|
|
87
|
+
|
|
88
|
+
|
|
82
89
|
class QueryFactsClustersFactsClusters(BaseModel):
|
|
83
90
|
entities: list["QueryFactsClustersFactsClustersEntities"]
|
|
84
91
|
similarity: Optional[float]
|
|
@@ -112,6 +112,9 @@ class QuerySpecificationsSpecificationsResultsStrategy(BaseModel):
|
|
|
112
112
|
embed_citations: Optional[bool] = Field(alias="embedCitations")
|
|
113
113
|
flatten_citations: Optional[bool] = Field(alias="flattenCitations")
|
|
114
114
|
enable_facets: Optional[bool] = Field(alias="enableFacets")
|
|
115
|
+
enable_summarization: Optional[bool] = Field(alias="enableSummarization")
|
|
116
|
+
enable_entity_extraction: Optional[bool] = Field(alias="enableEntityExtraction")
|
|
117
|
+
enable_fact_extraction: Optional[bool] = Field(alias="enableFactExtraction")
|
|
115
118
|
messages_weight: Optional[float] = Field(alias="messagesWeight")
|
|
116
119
|
contents_weight: Optional[float] = Field(alias="contentsWeight")
|
|
117
120
|
|
graphlit_api/retrieve_facts.py
CHANGED
|
@@ -6,7 +6,7 @@ from typing import Any, Optional
|
|
|
6
6
|
from pydantic import Field
|
|
7
7
|
|
|
8
8
|
from .base_model import BaseModel
|
|
9
|
-
from .enums import EntityState, FactCategory, ObservableTypes
|
|
9
|
+
from .enums import EntityState, FactCategory, ObservableTypes, SourceTypes
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class RetrieveFacts(BaseModel):
|
|
@@ -37,6 +37,8 @@ class RetrieveFactsRetrieveFactsResultsFact(BaseModel):
|
|
|
37
37
|
]
|
|
38
38
|
feeds: Optional[list[Optional["RetrieveFactsRetrieveFactsResultsFactFeeds"]]]
|
|
39
39
|
content: Optional["RetrieveFactsRetrieveFactsResultsFactContent"]
|
|
40
|
+
conversation: Optional["RetrieveFactsRetrieveFactsResultsFactConversation"]
|
|
41
|
+
source_type: Optional[SourceTypes] = Field(alias="sourceType")
|
|
40
42
|
category: Optional[FactCategory]
|
|
41
43
|
confidence: Optional[float]
|
|
42
44
|
|
|
@@ -84,6 +86,11 @@ class RetrieveFactsRetrieveFactsResultsFactContent(BaseModel):
|
|
|
84
86
|
name: str
|
|
85
87
|
|
|
86
88
|
|
|
89
|
+
class RetrieveFactsRetrieveFactsResultsFactConversation(BaseModel):
|
|
90
|
+
id: str
|
|
91
|
+
name: str
|
|
92
|
+
|
|
93
|
+
|
|
87
94
|
class RetrieveFactsRetrieveFactsResultsContent(BaseModel):
|
|
88
95
|
id: str
|
|
89
96
|
|
graphlit_api/screenshot_page.py
CHANGED
|
@@ -68,6 +68,7 @@ class ScreenshotPageScreenshotPageObservationsOccurrences(BaseModel):
|
|
|
68
68
|
start_time: Optional[Any] = Field(alias="startTime")
|
|
69
69
|
end_time: Optional[Any] = Field(alias="endTime")
|
|
70
70
|
page_index: Optional[int] = Field(alias="pageIndex")
|
|
71
|
+
turn_index: Optional[int] = Field(alias="turnIndex")
|
|
71
72
|
bounding_box: Optional[
|
|
72
73
|
"ScreenshotPageScreenshotPageObservationsOccurrencesBoundingBox"
|
|
73
74
|
] = Field(alias="boundingBox")
|
graphlit_api/update_content.py
CHANGED
|
@@ -68,6 +68,7 @@ class UpdateContentUpdateContentObservationsOccurrences(BaseModel):
|
|
|
68
68
|
start_time: Optional[Any] = Field(alias="startTime")
|
|
69
69
|
end_time: Optional[Any] = Field(alias="endTime")
|
|
70
70
|
page_index: Optional[int] = Field(alias="pageIndex")
|
|
71
|
+
turn_index: Optional[int] = Field(alias="turnIndex")
|
|
71
72
|
bounding_box: Optional[
|
|
72
73
|
"UpdateContentUpdateContentObservationsOccurrencesBoundingBox"
|
|
73
74
|
] = Field(alias="boundingBox")
|
{graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.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=16zNCZmn3YNIXFlZ35L9FirWd8a8YY9cfTcM5XJoFKE,358898
|
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=1tiojA1TZvfua02MrBCvCa7p1qnqk_VtQn4JvrTY9sw,882
|
|
5
5
|
graphlit_api/approve_content.py,sha256=YDpE6Q0KaWutphAwo7oSSfjEWbUDrc0sCVDjYfkY0WQ,436
|
|
6
6
|
graphlit_api/ask_graphlit.py,sha256=d0k-Htsn5fx0Vm60iqj08n0EesoSTlXJZ5JofZpKgDA,6818
|
|
@@ -8,7 +8,7 @@ graphlit_api/async_base_client.py,sha256=Us_qELd9yw8naADlLxioJs0HoJ7HSFFT8DbCzjx
|
|
|
8
8
|
graphlit_api/base_model.py,sha256=S-phq2fzKu2Kuct1dUnbyvMPT5k7TsfqOkCf_3yZ19I,640
|
|
9
9
|
graphlit_api/branch_conversation.py,sha256=iU3IsoM526AHUHjX0ODAyOPTpyS9N5RqSdytoAOmKbU,539
|
|
10
10
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
|
11
|
-
graphlit_api/client.py,sha256=
|
|
11
|
+
graphlit_api/client.py,sha256=OzRser9Bvj5v8vv4Fz32S_Oh10bEHStpK8eB3ZmsaGk,284026
|
|
12
12
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
|
13
13
|
graphlit_api/complete_conversation.py,sha256=VUaFR4OivV787SpITuE25c5Pu9V_5Q_tJ4KK58bNCXI,17508
|
|
14
14
|
graphlit_api/continue_conversation.py,sha256=gDldOxfzs4Cpu6b3oPCnXcr5hx1fN4AXjTwSdgbiI08,17508
|
|
@@ -186,7 +186,7 @@ graphlit_api/enrich_organizations.py,sha256=HOakGRxUdeXJRtCOPSoyjCtLGirPHzZGVDP0
|
|
|
186
186
|
graphlit_api/enrich_persons.py,sha256=5b_THYNJuRK81IXSD-xtkdsVhVj0IuhFV9TLkj7WP74,404
|
|
187
187
|
graphlit_api/enrich_places.py,sha256=uy9LvHdKWnhoNeb96-lDcEyre0PTJhLqJ7lF5xjQdl8,396
|
|
188
188
|
graphlit_api/enrich_products.py,sha256=rnXiQ-hr22aTSJy6jHDj715WS3FSKfLv6xqXwaEsCHA,412
|
|
189
|
-
graphlit_api/enums.py,sha256=
|
|
189
|
+
graphlit_api/enums.py,sha256=rO4fSi9buPJqFMz1uL_1RuRkmkxnGWEtow5f9H7BDZw,39806
|
|
190
190
|
graphlit_api/exceptions.py,sha256=z0s5zBylpbPvt5iYzV3cw5SZR7664nupVoARPv6bNzg,2417
|
|
191
191
|
graphlit_api/extract_contents.py,sha256=4QSRtoKgrh23dL7KpsDpThYHA7tJlVphxVnXPudslRE,955
|
|
192
192
|
graphlit_api/extract_observables.py,sha256=ZQJnxfFyAg2LkDOSvQ5AUZSnzHIf0JYcjtrFk9oxXEY,5873
|
|
@@ -197,10 +197,10 @@ graphlit_api/get_alert.py,sha256=mS8Ihd0o9uHKKUvxwSZCA1_eF9JTvvopn_eHyiSAoZg,962
|
|
|
197
197
|
graphlit_api/get_category.py,sha256=2gWSiwNiFkcbqD9XpfgdTBoYMxinIcYHWqnJEM2RYDY,579
|
|
198
198
|
graphlit_api/get_collection.py,sha256=lteHroCsblwuWTFQfih8qzjZ5HTdmXDXwrbK9i77HwA,856
|
|
199
199
|
graphlit_api/get_connector.py,sha256=MLRUuLKLuUOg7oRoORuuKucofWl69_q3ARB-Xy0uoSI,3263
|
|
200
|
-
graphlit_api/get_content.py,sha256=
|
|
201
|
-
graphlit_api/get_conversation.py,sha256=
|
|
200
|
+
graphlit_api/get_content.py,sha256=9aa_qqrDXGoFr6yLLviE71g5HAKn0GpgCArvJfJNFfw,23494
|
|
201
|
+
graphlit_api/get_conversation.py,sha256=mY5NJRSHSYqeCTD6xvPtqKVe4D6b-s56lq-ZNpRTCp8,20015
|
|
202
202
|
graphlit_api/get_event.py,sha256=OXKL2nqKl9DhWwuRd3C2I7KMAn3iG62i3cHAMh1lD64,3331
|
|
203
|
-
graphlit_api/get_fact.py,sha256=
|
|
203
|
+
graphlit_api/get_fact.py,sha256=6BtvxiRocWcrCcKzUKJmFponnc9yalKcdwJI44Pow-g,2089
|
|
204
204
|
graphlit_api/get_feed.py,sha256=GWcHo31GO6dNu1E-k5sQSg-As6Wa2mQuQ0O4iovJFYg,32510
|
|
205
205
|
graphlit_api/get_investment.py,sha256=2s_1oYlBOXs-cIGUz9ehQ27N2zoV7J79hBBG5ysi01E,3597
|
|
206
206
|
graphlit_api/get_investment_fund.py,sha256=qpM1sSlSPozTltb1jAOC05eTH69-Hc2Y12cqHxXYdBs,3723
|
|
@@ -224,28 +224,28 @@ graphlit_api/get_project.py,sha256=KDuQprWSINZrzhb_K1bnUY9MEdqhXl51x7uwclPCcJA,1
|
|
|
224
224
|
graphlit_api/get_repo.py,sha256=75n8z7_irCC39l5g1jnx6Olg9uVHkIQ0DkMF0P43Suo,2244
|
|
225
225
|
graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7vao0xiObhK-1Ig3o,462
|
|
226
226
|
graphlit_api/get_software.py,sha256=v5Z16PoO3ML-atGDTl8K3FNwqrHwBz0Ed3td2ZMt3Rk,2466
|
|
227
|
-
graphlit_api/get_specification.py,sha256=
|
|
227
|
+
graphlit_api/get_specification.py,sha256=6VavLzaTJ531wNVIupimqcQ-U5o_lRZ8aZYEk425y8s,11843
|
|
228
228
|
graphlit_api/get_user.py,sha256=yOjIDPNeXew5GmO27zYCOJ5ODX2byfgjHh2rlUb9fSs,3520
|
|
229
229
|
graphlit_api/get_user_by_identifier.py,sha256=NumqnPXbivKIKFALdbXxy6phVcVy8-dOzC6DGy6XDoA,4396
|
|
230
230
|
graphlit_api/get_view.py,sha256=eTVa8PZP3QDkkUmPGmD_gdIf6cQ0hxmqZ7aBFXOvmQo,10556
|
|
231
231
|
graphlit_api/get_workflow.py,sha256=nIyTWNh1b-E3Pa_3gZ6dYIl4UIABt8ylWG4-tmM-SkE,18518
|
|
232
|
-
graphlit_api/ingest_batch.py,sha256=
|
|
233
|
-
graphlit_api/ingest_encoded_file.py,sha256=
|
|
234
|
-
graphlit_api/ingest_event.py,sha256=
|
|
235
|
-
graphlit_api/ingest_memory.py,sha256=
|
|
236
|
-
graphlit_api/ingest_text.py,sha256=
|
|
237
|
-
graphlit_api/ingest_text_batch.py,sha256=
|
|
238
|
-
graphlit_api/ingest_uri.py,sha256=
|
|
239
|
-
graphlit_api/input_types.py,sha256=
|
|
232
|
+
graphlit_api/ingest_batch.py,sha256=rCAAmroODknqfSlpXTkcU99bCp2r_8UeGvIHV6C93jQ,2447
|
|
233
|
+
graphlit_api/ingest_encoded_file.py,sha256=PgdXDgLf_HSloS_-wIOOFjF50QmXhR-eB1mjpx3PhkQ,2688
|
|
234
|
+
graphlit_api/ingest_event.py,sha256=y5STFPs2QNF8KxNGqVG1XLoS5eKT_du06VvlidpFHXM,2417
|
|
235
|
+
graphlit_api/ingest_memory.py,sha256=0JyWGbb5_hSWt4vZw7kRq16gAKae0ceZaCS_wKrFFwI,2455
|
|
236
|
+
graphlit_api/ingest_text.py,sha256=mkGU7KaYmDwGBdzz4b4_fNKUtQUpwAo-6F58Oidj7ao,2367
|
|
237
|
+
graphlit_api/ingest_text_batch.py,sha256=3MJHuR2WEt6WFM1f5Zoax0jtHN36TC1Dupg8HdI06H4,2602
|
|
238
|
+
graphlit_api/ingest_uri.py,sha256=fYKvCOBz3rfvhEpDHWM559Kqin4QyLLDQ9pjMr07QwY,2329
|
|
239
|
+
graphlit_api/input_types.py,sha256=fXxBDtrcHjVl02BpHsZi4rPk63UVt-_sgEUVlgEeMMs,244686
|
|
240
240
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
|
241
241
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
|
242
|
-
graphlit_api/lookup_contents.py,sha256=
|
|
242
|
+
graphlit_api/lookup_contents.py,sha256=J14CiG09LXEnJoDRV3aZ6eIkXTxgHqHUGlR7vcV29fU,26144
|
|
243
243
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
|
244
244
|
graphlit_api/lookup_entity.py,sha256=wDdOlauwGTQWmCVK3jeT2yJTxlZLK_XSU71unWKgN8k,1108
|
|
245
245
|
graphlit_api/lookup_usage.py,sha256=PepK3k3esbgqiLIy8szqepOwRiOmxBKoxoSm2R8ZmgU,1565
|
|
246
246
|
graphlit_api/map_web.py,sha256=vnkzWgB83OPQh-sk6Zs_EgP_RFBONWuEZIes3b7gYV8,340
|
|
247
247
|
graphlit_api/match_entity.py,sha256=FOSSAoG7T250uAXEhHhu7RIorJK8zG8lX9jpLPneUG8,809
|
|
248
|
-
graphlit_api/operations.py,sha256=
|
|
248
|
+
graphlit_api/operations.py,sha256=Uru0UqBXjk-f-GPIl4_ZeKd9qRU4eHV_2JOcKhSbQZk,329975
|
|
249
249
|
graphlit_api/prompt.py,sha256=SyMD2_HYSoD1YqJz7W7AyzF-Vq89kZOJBeq3B0Fv750,6532
|
|
250
250
|
graphlit_api/prompt_conversation.py,sha256=1FGc9EHtgYA7vkwySuybvwpWsU04ySB5vvJnqLX88H0,17122
|
|
251
251
|
graphlit_api/prompt_specifications.py,sha256=pYDuzj-Vy0_avuqwMyh0foJkQRkiynm8mo1Qc4KBpDA,7419
|
|
@@ -267,16 +267,17 @@ graphlit_api/query_connectors.py,sha256=gASoXZL0v2Qp4BZ2jngBGmnlpsYnKqgA0jJhBRwF
|
|
|
267
267
|
graphlit_api/query_contents.py,sha256=0CwtIWMkaUd-h2IhDg1uSNNeIJdHPwxHiFhp5LcFs28,19171
|
|
268
268
|
graphlit_api/query_contents_facets.py,sha256=IBOigptNMO3ze4sEe9QSEVCU9jhSjShcNzO2Fe7EupQ,1362
|
|
269
269
|
graphlit_api/query_contents_graph.py,sha256=_osCpGRmujiLGVpuebzFgdgTKrhOUDydMbU8eEih2aQ,969
|
|
270
|
-
graphlit_api/query_contents_observations.py,sha256=
|
|
271
|
-
graphlit_api/query_conversations.py,sha256=
|
|
270
|
+
graphlit_api/query_contents_observations.py,sha256=jnns10sCygJcyYX7yz4AY4Fuj4PiMB4vYskfavjFs7U,22343
|
|
271
|
+
graphlit_api/query_conversations.py,sha256=Whd99OLKdYUwR2PuXAaSx2WzHzxiulX4FzFIoyqdhZM,22277
|
|
272
|
+
graphlit_api/query_conversations_graph.py,sha256=Zw57TynpvXyady-sB8itp4zoEj9aCD0Ayfs8jm8b9H8,1084
|
|
272
273
|
graphlit_api/query_credits.py,sha256=6uJqn4iYfBfsUtSMTCSuV4d2VTiYR4gR5tEeDH5Cf9o,1396
|
|
273
274
|
graphlit_api/query_discord_channels.py,sha256=KiEZz8mjOyzWYaxFgYqU2AiPHS2GI7JzpI7lzE4adwk,715
|
|
274
275
|
graphlit_api/query_discord_guilds.py,sha256=eiSCzzJqijto7n5oFrwYXNIR18eYtCc4r1kQ5_51Rd8,679
|
|
275
276
|
graphlit_api/query_dropbox_folders.py,sha256=o8YcRHPjHZp7cakVeZ3s0_CdqZruvQJOSuaLJDkiXGQ,697
|
|
276
277
|
graphlit_api/query_events.py,sha256=m21ymuLkTbWE41Yj4RHLZ7Yntqj6iP70zbSMkHBOf94,3687
|
|
277
278
|
graphlit_api/query_events_clusters.py,sha256=AqO_XEXB6gqPcNkM8__XnyWg07ldyLKpNcdH8-Je4Ds,4431
|
|
278
|
-
graphlit_api/query_facts.py,sha256=
|
|
279
|
-
graphlit_api/query_facts_clusters.py,sha256=
|
|
279
|
+
graphlit_api/query_facts.py,sha256=w-OMJhv8aBupje7RMoQH-54AsxB_88oqx0gK64BSwRA,2485
|
|
280
|
+
graphlit_api/query_facts_clusters.py,sha256=HtX4Erq7J6hOgjhnedqBtaKqDhDzhO6jj-w9UhWHIjE,3095
|
|
280
281
|
graphlit_api/query_facts_graph.py,sha256=KvfpdyKlNWhlxFjOvsJQ1xzexH2YUULlCnyYHfhJ9u8,900
|
|
281
282
|
graphlit_api/query_feeds.py,sha256=ANVvKqw6LIQawbonnrneF37cWfJa5TdlCSLFJSXwLGA,35300
|
|
282
283
|
graphlit_api/query_git_hub_repositories.py,sha256=huh2bdX1AuxQl3rCK9I3DizA97foWAcqy5qb5SuD4Bw,1282
|
|
@@ -342,7 +343,7 @@ graphlit_api/query_share_point_libraries.py,sha256=4bMUeB0B_C3X28g1hYCaDomBNhBF4
|
|
|
342
343
|
graphlit_api/query_slack_channels.py,sha256=JXUaU7Z5_HyW3a-n9t5VJ7RpyWaeANhX2RclnenNfz4,415
|
|
343
344
|
graphlit_api/query_softwares.py,sha256=WkDRXf5yacjYDMTDCWmVbNghoDjVa8btJyTXoutNK5I,2818
|
|
344
345
|
graphlit_api/query_softwares_clusters.py,sha256=4vhzomN59IK3B6wHjmkHd6PnVTHF3JFYNaahhUiPSuQ,3594
|
|
345
|
-
graphlit_api/query_specifications.py,sha256=
|
|
346
|
+
graphlit_api/query_specifications.py,sha256=bdZveAi9bMFm1tSiByGiWVNtIKU9t0JNfq0lHNXBbA4,12615
|
|
346
347
|
graphlit_api/query_tokens.py,sha256=IXCkeVKwv4qNzJmkZnxBpKfsp7vUgpA6h2i8F3_YS6k,1733
|
|
347
348
|
graphlit_api/query_usage.py,sha256=kFJrzFKYExPJqBK5cZpey5Gha1h8hQDKZHvWR22EexI,1499
|
|
348
349
|
graphlit_api/query_users.py,sha256=j_g_Yoh8ZEo5oNUdS8A_4qpbPhgH51L9cK3HS4nooHw,3972
|
|
@@ -355,14 +356,14 @@ graphlit_api/resolve_entities.py,sha256=3IX5-zpj91o6V3z7U-KvuCb6tpxeZ3TGatV4vbEI
|
|
|
355
356
|
graphlit_api/resolve_entity.py,sha256=AgO15B8VDUEccRb26sA9Ct96fmVMccD21uSSVKGSxxc,863
|
|
356
357
|
graphlit_api/restart_content.py,sha256=vcvI4YbdL6G8KgM50K8FeBmdzkYw_p9Jhyg_bcANvV4,436
|
|
357
358
|
graphlit_api/retrieve_entities.py,sha256=a4nkUNgdFqHPTWQn4fPmJVo7Uub6FtPJWiKgji0qPe4,732
|
|
358
|
-
graphlit_api/retrieve_facts.py,sha256=
|
|
359
|
+
graphlit_api/retrieve_facts.py,sha256=szK64r6v0dS3W8tRXXfM0ZdL_gtIKUKfVmnfdCmh2ww,3121
|
|
359
360
|
graphlit_api/retrieve_sources.py,sha256=YRwy52Ol5C3ojMX7LQ2Iwbtjtb-3REVfKtu85-L2L3A,1128
|
|
360
361
|
graphlit_api/retrieve_view.py,sha256=2x_S8jjcotfXxOtzJVgkJnzrhKTp6xYmJRf9jGXEZMY,1054
|
|
361
362
|
graphlit_api/revise_content.py,sha256=9lHOmjgAjrvxIoF-7GBjIdhE6cZA_g9qS-B5PE5gtfc,6934
|
|
362
363
|
graphlit_api/revise_encoded_image.py,sha256=UU0eiWI3X_3MPZ0JybbsZtfOcWIgeFqfUNgSQM8M3VE,7223
|
|
363
364
|
graphlit_api/revise_image.py,sha256=czUlNqEOrBJjAYU5zXpVM7oCDKU_oPkq8_i7t6Dm2uk,6818
|
|
364
365
|
graphlit_api/revise_text.py,sha256=NluHunA2ZnShz670InH3DYYwOq3LnuhlL5X4Jiegces,6766
|
|
365
|
-
graphlit_api/screenshot_page.py,sha256=
|
|
366
|
+
graphlit_api/screenshot_page.py,sha256=1fFK8y2-iYv7M7lzwEQl6k1YQN30hvGJ33VwcGdU7ak,2545
|
|
366
367
|
graphlit_api/search_web.py,sha256=-8krZBN9dHYA2FsOxlk60mE6teDETjh8UssJAFt8f9Q,558
|
|
367
368
|
graphlit_api/send_notification.py,sha256=fV6j94gV45uslgB56MN6g5nQ3g7Kq0vX1rfDS37svRc,413
|
|
368
369
|
graphlit_api/specification_exists.py,sha256=eDMaUOsuw52JTJBYSuWP5rDDXsB7qxst1ak8FajaF5Y,437
|
|
@@ -374,7 +375,7 @@ graphlit_api/update_alert.py,sha256=ny1hlhyyRK9PlYzsTJBILInpV3vZmcIQ78qTftLb5Ik,
|
|
|
374
375
|
graphlit_api/update_category.py,sha256=1VY6dUOYAhsjzR0JxQ_BOp8Rz1hqWLxcS9ydfA_E8vM,396
|
|
375
376
|
graphlit_api/update_collection.py,sha256=zpuUloi3xNaT417-S09sjB6Q0cfrBPfb6z_He4AUrHI,519
|
|
376
377
|
graphlit_api/update_connector.py,sha256=BxAKds7Nw13iYZfmKNrlr1PQ6yraGfipJH6Y2we2J2Q,509
|
|
377
|
-
graphlit_api/update_content.py,sha256=
|
|
378
|
+
graphlit_api/update_content.py,sha256=8XTijN-ajt8EIZJUJHFnKk6ZtBsYf8oSRQ1BMru_C08,2507
|
|
378
379
|
graphlit_api/update_conversation.py,sha256=IlyAPmToWUHIpWUoZSxTdzMiop-67kUv0CP0IE0UC_A,539
|
|
379
380
|
graphlit_api/update_event.py,sha256=Q2k2hAYHJfX-oJlEtkcMMFWwDEevU9LM-exH8rR9MVc,358
|
|
380
381
|
graphlit_api/update_fact.py,sha256=uCeq7obIcjctIQJHceMGzWVpRdhOjWqzK16FUMZ04J4,390
|
|
@@ -413,8 +414,8 @@ graphlit_api/upsert_view.py,sha256=2UmBHM76kB3MOrFl0C84tdolXYHoukgZ60yzWSe9t54,1
|
|
|
413
414
|
graphlit_api/upsert_workflow.py,sha256=MzA9FUtgIF3wsdq50VIsGNIeca0cB3TgX-s8NamQusg,19896
|
|
414
415
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
|
415
416
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
|
416
|
-
graphlit_client-1.0.
|
|
417
|
-
graphlit_client-1.0.
|
|
418
|
-
graphlit_client-1.0.
|
|
419
|
-
graphlit_client-1.0.
|
|
420
|
-
graphlit_client-1.0.
|
|
417
|
+
graphlit_client-1.0.20260130001.dist-info/licenses/LICENSE,sha256=jXhY7KvtRtwhhxDAmj6TO3oHISIIgch5KusiqpAwcAI,1074
|
|
418
|
+
graphlit_client-1.0.20260130001.dist-info/METADATA,sha256=0sHWUCpfyWNxYazywmzXbuiPkGmfhUZiUMuSwj8_kCk,3408
|
|
419
|
+
graphlit_client-1.0.20260130001.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
420
|
+
graphlit_client-1.0.20260130001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
|
421
|
+
graphlit_client-1.0.20260130001.dist-info/RECORD,,
|
{graphlit_client-1.0.20260129002.dist-info → graphlit_client-1.0.20260130001.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|