graphlit-client 1.0.20250502002__py3-none-any.whl → 1.0.20250519001__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 +28 -16
- graphlit_api/ask_graphlit.py +2 -0
- graphlit_api/complete_conversation.py +4 -0
- graphlit_api/continue_conversation.py +4 -0
- graphlit_api/describe_encoded_image.py +2 -0
- graphlit_api/describe_image.py +2 -0
- graphlit_api/enums.py +6 -0
- graphlit_api/format_conversation.py +4 -0
- graphlit_api/get_conversation.py +2 -0
- graphlit_api/operations.py +252 -186
- graphlit_api/prompt.py +2 -0
- graphlit_api/prompt_conversation.py +4 -0
- graphlit_api/prompt_specifications.py +2 -0
- graphlit_api/publish_conversation.py +31 -8
- graphlit_api/publish_text.py +31 -8
- graphlit_api/query_conversations.py +2 -0
- graphlit_api/revise_content.py +2 -0
- graphlit_api/revise_encoded_image.py +2 -0
- graphlit_api/revise_image.py +2 -0
- graphlit_api/revise_text.py +2 -0
- {graphlit_client-1.0.20250502002.dist-info → graphlit_client-1.0.20250519001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250502002.dist-info → graphlit_client-1.0.20250519001.dist-info}/RECORD +25 -25
- {graphlit_client-1.0.20250502002.dist-info → graphlit_client-1.0.20250519001.dist-info}/WHEEL +1 -1
- {graphlit_client-1.0.20250502002.dist-info → graphlit_client-1.0.20250519001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250502002.dist-info → graphlit_client-1.0.20250519001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -1771,18 +1771,24 @@ from .publish_contents import (
|
|
1771
1771
|
from .publish_conversation import (
|
1772
1772
|
PublishConversation,
|
1773
1773
|
PublishConversationPublishConversation,
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1774
|
+
PublishConversationPublishConversationContents,
|
1775
|
+
PublishConversationPublishConversationContentsAudio,
|
1776
|
+
PublishConversationPublishConversationContentsDocument,
|
1777
|
+
PublishConversationPublishConversationContentsImage,
|
1778
|
+
PublishConversationPublishConversationContentsVideo,
|
1779
|
+
PublishConversationPublishConversationDetails,
|
1780
|
+
PublishConversationPublishConversationDetailsContents,
|
1778
1781
|
)
|
1779
1782
|
from .publish_text import (
|
1780
1783
|
PublishText,
|
1781
1784
|
PublishTextPublishText,
|
1782
|
-
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1785
|
+
PublishTextPublishTextContents,
|
1786
|
+
PublishTextPublishTextContentsAudio,
|
1787
|
+
PublishTextPublishTextContentsDocument,
|
1788
|
+
PublishTextPublishTextContentsImage,
|
1789
|
+
PublishTextPublishTextContentsVideo,
|
1790
|
+
PublishTextPublishTextDetails,
|
1791
|
+
PublishTextPublishTextDetailsContents,
|
1786
1792
|
)
|
1787
1793
|
from .query_alerts import (
|
1788
1794
|
QueryAlerts,
|
@@ -3983,16 +3989,22 @@ __all__ = [
|
|
3983
3989
|
"PublishContentsPublishContentsDetailsContents",
|
3984
3990
|
"PublishConversation",
|
3985
3991
|
"PublishConversationPublishConversation",
|
3986
|
-
"
|
3987
|
-
"
|
3988
|
-
"
|
3989
|
-
"
|
3992
|
+
"PublishConversationPublishConversationContents",
|
3993
|
+
"PublishConversationPublishConversationContentsAudio",
|
3994
|
+
"PublishConversationPublishConversationContentsDocument",
|
3995
|
+
"PublishConversationPublishConversationContentsImage",
|
3996
|
+
"PublishConversationPublishConversationContentsVideo",
|
3997
|
+
"PublishConversationPublishConversationDetails",
|
3998
|
+
"PublishConversationPublishConversationDetailsContents",
|
3990
3999
|
"PublishText",
|
3991
4000
|
"PublishTextPublishText",
|
3992
|
-
"
|
3993
|
-
"
|
3994
|
-
"
|
3995
|
-
"
|
4001
|
+
"PublishTextPublishTextContents",
|
4002
|
+
"PublishTextPublishTextContentsAudio",
|
4003
|
+
"PublishTextPublishTextContentsDocument",
|
4004
|
+
"PublishTextPublishTextContentsImage",
|
4005
|
+
"PublishTextPublishTextContentsVideo",
|
4006
|
+
"PublishTextPublishTextDetails",
|
4007
|
+
"PublishTextPublishTextDetailsContents",
|
3996
4008
|
"QUERY_ALERTS_GQL",
|
3997
4009
|
"QUERY_CATEGORIES_GQL",
|
3998
4010
|
"QUERY_COLLECTIONS_GQL",
|
graphlit_api/ask_graphlit.py
CHANGED
@@ -47,6 +47,8 @@ class AskGraphlitAskGraphlitMessage(BaseModel):
|
|
47
47
|
model: Optional[str]
|
48
48
|
data: Optional[str]
|
49
49
|
mime_type: Optional[str] = Field(alias="mimeType")
|
50
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
51
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
50
52
|
|
51
53
|
|
52
54
|
class AskGraphlitAskGraphlitMessageCitations(BaseModel):
|
@@ -58,6 +58,8 @@ class CompleteConversationCompleteConversationMessage(BaseModel):
|
|
58
58
|
model: Optional[str]
|
59
59
|
data: Optional[str]
|
60
60
|
mime_type: Optional[str] = Field(alias="mimeType")
|
61
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
62
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
61
63
|
|
62
64
|
|
63
65
|
class CompleteConversationCompleteConversationMessageCitations(BaseModel):
|
@@ -288,6 +290,8 @@ class CompleteConversationCompleteConversationDetailsMessages(BaseModel):
|
|
288
290
|
model: Optional[str]
|
289
291
|
data: Optional[str]
|
290
292
|
mime_type: Optional[str] = Field(alias="mimeType")
|
293
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
294
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
291
295
|
|
292
296
|
|
293
297
|
class CompleteConversationCompleteConversationDetailsMessagesCitations(BaseModel):
|
@@ -58,6 +58,8 @@ class ContinueConversationContinueConversationMessage(BaseModel):
|
|
58
58
|
model: Optional[str]
|
59
59
|
data: Optional[str]
|
60
60
|
mime_type: Optional[str] = Field(alias="mimeType")
|
61
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
62
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
61
63
|
|
62
64
|
|
63
65
|
class ContinueConversationContinueConversationMessageCitations(BaseModel):
|
@@ -288,6 +290,8 @@ class ContinueConversationContinueConversationDetailsMessages(BaseModel):
|
|
288
290
|
model: Optional[str]
|
289
291
|
data: Optional[str]
|
290
292
|
mime_type: Optional[str] = Field(alias="mimeType")
|
293
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
294
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
291
295
|
|
292
296
|
|
293
297
|
class ContinueConversationContinueConversationDetailsMessagesCitations(BaseModel):
|
@@ -41,6 +41,8 @@ class DescribeEncodedImageDescribeEncodedImage(BaseModel):
|
|
41
41
|
model: Optional[str]
|
42
42
|
data: Optional[str]
|
43
43
|
mime_type: Optional[str] = Field(alias="mimeType")
|
44
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
45
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
44
46
|
|
45
47
|
|
46
48
|
class DescribeEncodedImageDescribeEncodedImageCitations(BaseModel):
|
graphlit_api/describe_image.py
CHANGED
@@ -39,6 +39,8 @@ class DescribeImageDescribeImage(BaseModel):
|
|
39
39
|
model: Optional[str]
|
40
40
|
data: Optional[str]
|
41
41
|
mime_type: Optional[str] = Field(alias="mimeType")
|
42
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
43
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
42
44
|
|
43
45
|
|
44
46
|
class DescribeImageDescribeImageCitations(BaseModel):
|
graphlit_api/enums.py
CHANGED
@@ -539,6 +539,11 @@ class OccurrenceTypes(str, Enum):
|
|
539
539
|
|
540
540
|
|
541
541
|
class BedrockModels(str, Enum):
|
542
|
+
LLAMA_4_MAVERICK_17B = "LLAMA_4_MAVERICK_17B"
|
543
|
+
LLAMA_4_SCOUT_17B = "LLAMA_4_SCOUT_17B"
|
544
|
+
CLAUDE_3_7_SONNET = "CLAUDE_3_7_SONNET"
|
545
|
+
NOVA_PREMIER = "NOVA_PREMIER"
|
546
|
+
NOVA_PRO = "NOVA_PRO"
|
542
547
|
CUSTOM = "CUSTOM"
|
543
548
|
|
544
549
|
|
@@ -1027,6 +1032,7 @@ class ConversationRoleTypes(str, Enum):
|
|
1027
1032
|
SYSTEM = "SYSTEM"
|
1028
1033
|
ASSISTANT = "ASSISTANT"
|
1029
1034
|
USER = "USER"
|
1035
|
+
TOOL = "TOOL"
|
1030
1036
|
|
1031
1037
|
|
1032
1038
|
class ConnectorTypes(str, Enum):
|
@@ -58,6 +58,8 @@ class FormatConversationFormatConversationMessage(BaseModel):
|
|
58
58
|
model: Optional[str]
|
59
59
|
data: Optional[str]
|
60
60
|
mime_type: Optional[str] = Field(alias="mimeType")
|
61
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
62
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
61
63
|
|
62
64
|
|
63
65
|
class FormatConversationFormatConversationMessageCitations(BaseModel):
|
@@ -272,6 +274,8 @@ class FormatConversationFormatConversationDetailsMessages(BaseModel):
|
|
272
274
|
model: Optional[str]
|
273
275
|
data: Optional[str]
|
274
276
|
mime_type: Optional[str] = Field(alias="mimeType")
|
277
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
278
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
275
279
|
|
276
280
|
|
277
281
|
class FormatConversationFormatConversationDetailsMessagesCitations(BaseModel):
|
graphlit_api/get_conversation.py
CHANGED
@@ -61,6 +61,8 @@ class GetConversationConversationMessages(BaseModel):
|
|
61
61
|
model: Optional[str]
|
62
62
|
data: Optional[str]
|
63
63
|
mime_type: Optional[str] = Field(alias="mimeType")
|
64
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
65
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
64
66
|
|
65
67
|
|
66
68
|
class GetConversationConversationMessagesCitations(BaseModel):
|
graphlit_api/operations.py
CHANGED
@@ -1058,6 +1058,8 @@ mutation DescribeEncodedImage($prompt: String!, $mimeType: String!, $data: Strin
|
|
1058
1058
|
model
|
1059
1059
|
data
|
1060
1060
|
mimeType
|
1061
|
+
toolCallId
|
1062
|
+
toolCallResponse
|
1061
1063
|
}
|
1062
1064
|
}
|
1063
1065
|
"""
|
@@ -1191,6 +1193,8 @@ mutation DescribeImage($prompt: String!, $uri: URL!, $specification: EntityRefer
|
|
1191
1193
|
model
|
1192
1194
|
data
|
1193
1195
|
mimeType
|
1196
|
+
toolCallId
|
1197
|
+
toolCallResponse
|
1194
1198
|
}
|
1195
1199
|
}
|
1196
1200
|
"""
|
@@ -1979,101 +1983,115 @@ mutation PublishText($text: String!, $textType: TextTypes, $connector: ContentPu
|
|
1979
1983
|
name: $name
|
1980
1984
|
workflow: $workflow
|
1981
1985
|
) {
|
1982
|
-
|
1983
|
-
|
1984
|
-
|
1985
|
-
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
1990
|
-
|
1991
|
-
|
1992
|
-
|
1993
|
-
|
1994
|
-
|
1995
|
-
|
1996
|
-
|
1997
|
-
|
1998
|
-
|
1999
|
-
|
2000
|
-
|
2001
|
-
|
2002
|
-
|
2003
|
-
customSummary
|
2004
|
-
keywords
|
2005
|
-
bullets
|
2006
|
-
headlines
|
2007
|
-
posts
|
2008
|
-
chapters
|
2009
|
-
questions
|
2010
|
-
video {
|
2011
|
-
width
|
2012
|
-
height
|
2013
|
-
duration
|
2014
|
-
make
|
2015
|
-
model
|
2016
|
-
software
|
2017
|
-
title
|
2018
|
-
description
|
2019
|
-
keywords
|
2020
|
-
author
|
2021
|
-
}
|
2022
|
-
audio {
|
2023
|
-
keywords
|
2024
|
-
author
|
2025
|
-
series
|
2026
|
-
episode
|
2027
|
-
episodeType
|
2028
|
-
season
|
2029
|
-
publisher
|
2030
|
-
copyright
|
2031
|
-
genre
|
2032
|
-
title
|
2033
|
-
description
|
2034
|
-
bitrate
|
2035
|
-
channels
|
2036
|
-
sampleRate
|
2037
|
-
bitsPerSample
|
2038
|
-
duration
|
2039
|
-
}
|
2040
|
-
image {
|
2041
|
-
width
|
2042
|
-
height
|
2043
|
-
resolutionX
|
2044
|
-
resolutionY
|
2045
|
-
bitsPerComponent
|
2046
|
-
components
|
2047
|
-
projectionType
|
2048
|
-
orientation
|
2049
|
-
description
|
2050
|
-
make
|
2051
|
-
model
|
2052
|
-
software
|
2053
|
-
lens
|
2054
|
-
focalLength
|
2055
|
-
exposureTime
|
2056
|
-
fNumber
|
2057
|
-
iso
|
2058
|
-
heading
|
2059
|
-
pitch
|
2060
|
-
}
|
2061
|
-
document {
|
2062
|
-
title
|
2063
|
-
subject
|
1986
|
+
contents {
|
1987
|
+
id
|
1988
|
+
name
|
1989
|
+
state
|
1990
|
+
originalDate
|
1991
|
+
identifier
|
1992
|
+
markdown
|
1993
|
+
uri
|
1994
|
+
type
|
1995
|
+
fileType
|
1996
|
+
mimeType
|
1997
|
+
format
|
1998
|
+
formatName
|
1999
|
+
fileExtension
|
2000
|
+
fileName
|
2001
|
+
fileSize
|
2002
|
+
masterUri
|
2003
|
+
imageUri
|
2004
|
+
textUri
|
2005
|
+
audioUri
|
2006
|
+
transcriptUri
|
2064
2007
|
summary
|
2065
|
-
|
2066
|
-
publisher
|
2067
|
-
description
|
2008
|
+
customSummary
|
2068
2009
|
keywords
|
2069
|
-
|
2070
|
-
|
2071
|
-
|
2072
|
-
|
2073
|
-
|
2074
|
-
|
2075
|
-
|
2076
|
-
|
2010
|
+
bullets
|
2011
|
+
headlines
|
2012
|
+
posts
|
2013
|
+
chapters
|
2014
|
+
questions
|
2015
|
+
video {
|
2016
|
+
width
|
2017
|
+
height
|
2018
|
+
duration
|
2019
|
+
make
|
2020
|
+
model
|
2021
|
+
software
|
2022
|
+
title
|
2023
|
+
description
|
2024
|
+
keywords
|
2025
|
+
author
|
2026
|
+
}
|
2027
|
+
audio {
|
2028
|
+
keywords
|
2029
|
+
author
|
2030
|
+
series
|
2031
|
+
episode
|
2032
|
+
episodeType
|
2033
|
+
season
|
2034
|
+
publisher
|
2035
|
+
copyright
|
2036
|
+
genre
|
2037
|
+
title
|
2038
|
+
description
|
2039
|
+
bitrate
|
2040
|
+
channels
|
2041
|
+
sampleRate
|
2042
|
+
bitsPerSample
|
2043
|
+
duration
|
2044
|
+
}
|
2045
|
+
image {
|
2046
|
+
width
|
2047
|
+
height
|
2048
|
+
resolutionX
|
2049
|
+
resolutionY
|
2050
|
+
bitsPerComponent
|
2051
|
+
components
|
2052
|
+
projectionType
|
2053
|
+
orientation
|
2054
|
+
description
|
2055
|
+
make
|
2056
|
+
model
|
2057
|
+
software
|
2058
|
+
lens
|
2059
|
+
focalLength
|
2060
|
+
exposureTime
|
2061
|
+
fNumber
|
2062
|
+
iso
|
2063
|
+
heading
|
2064
|
+
pitch
|
2065
|
+
}
|
2066
|
+
document {
|
2067
|
+
title
|
2068
|
+
subject
|
2069
|
+
summary
|
2070
|
+
author
|
2071
|
+
publisher
|
2072
|
+
description
|
2073
|
+
keywords
|
2074
|
+
pageCount
|
2075
|
+
worksheetCount
|
2076
|
+
slideCount
|
2077
|
+
wordCount
|
2078
|
+
lineCount
|
2079
|
+
paragraphCount
|
2080
|
+
isEncrypted
|
2081
|
+
hasDigitalSignature
|
2082
|
+
}
|
2083
|
+
}
|
2084
|
+
details {
|
2085
|
+
contents {
|
2086
|
+
id
|
2087
|
+
}
|
2088
|
+
summaries
|
2089
|
+
text
|
2090
|
+
textType
|
2091
|
+
summarySpecification
|
2092
|
+
publishSpecification
|
2093
|
+
summaryTime
|
2094
|
+
publishTime
|
2077
2095
|
}
|
2078
2096
|
}
|
2079
2097
|
}
|
@@ -2658,6 +2676,8 @@ mutation AskGraphlit($prompt: String!, $type: SdkTypes, $id: ID, $specification:
|
|
2658
2676
|
model
|
2659
2677
|
data
|
2660
2678
|
mimeType
|
2679
|
+
toolCallId
|
2680
|
+
toolCallResponse
|
2661
2681
|
}
|
2662
2682
|
messageCount
|
2663
2683
|
}
|
@@ -2818,6 +2838,8 @@ mutation CompleteConversation($completion: String!, $id: ID!, $correlationId: St
|
|
2818
2838
|
model
|
2819
2839
|
data
|
2820
2840
|
mimeType
|
2841
|
+
toolCallId
|
2842
|
+
toolCallResponse
|
2821
2843
|
}
|
2822
2844
|
messageCount
|
2823
2845
|
facets {
|
@@ -2993,6 +3015,8 @@ mutation CompleteConversation($completion: String!, $id: ID!, $correlationId: St
|
|
2993
3015
|
model
|
2994
3016
|
data
|
2995
3017
|
mimeType
|
3018
|
+
toolCallId
|
3019
|
+
toolCallResponse
|
2996
3020
|
}
|
2997
3021
|
}
|
2998
3022
|
}
|
@@ -3131,6 +3155,8 @@ mutation ContinueConversation($id: ID!, $responses: [ConversationToolResponseInp
|
|
3131
3155
|
model
|
3132
3156
|
data
|
3133
3157
|
mimeType
|
3158
|
+
toolCallId
|
3159
|
+
toolCallResponse
|
3134
3160
|
}
|
3135
3161
|
messageCount
|
3136
3162
|
facets {
|
@@ -3306,6 +3332,8 @@ mutation ContinueConversation($id: ID!, $responses: [ConversationToolResponseInp
|
|
3306
3332
|
model
|
3307
3333
|
data
|
3308
3334
|
mimeType
|
3335
|
+
toolCallId
|
3336
|
+
toolCallResponse
|
3309
3337
|
}
|
3310
3338
|
}
|
3311
3339
|
}
|
@@ -3496,6 +3524,8 @@ mutation FormatConversation($prompt: String!, $id: ID, $specification: EntityRef
|
|
3496
3524
|
model
|
3497
3525
|
data
|
3498
3526
|
mimeType
|
3527
|
+
toolCallId
|
3528
|
+
toolCallResponse
|
3499
3529
|
}
|
3500
3530
|
messageCount
|
3501
3531
|
facets {
|
@@ -3671,6 +3701,8 @@ mutation FormatConversation($prompt: String!, $id: ID, $specification: EntityRef
|
|
3671
3701
|
model
|
3672
3702
|
data
|
3673
3703
|
mimeType
|
3704
|
+
toolCallId
|
3705
|
+
toolCallResponse
|
3674
3706
|
}
|
3675
3707
|
}
|
3676
3708
|
}
|
@@ -3812,6 +3844,8 @@ query GetConversation($id: ID!, $correlationId: String) {
|
|
3812
3844
|
model
|
3813
3845
|
data
|
3814
3846
|
mimeType
|
3847
|
+
toolCallId
|
3848
|
+
toolCallResponse
|
3815
3849
|
}
|
3816
3850
|
specification {
|
3817
3851
|
id
|
@@ -4126,6 +4160,8 @@ mutation Prompt($prompt: String, $mimeType: String, $data: String, $specificatio
|
|
4126
4160
|
model
|
4127
4161
|
data
|
4128
4162
|
mimeType
|
4163
|
+
toolCallId
|
4164
|
+
toolCallResponse
|
4129
4165
|
}
|
4130
4166
|
error
|
4131
4167
|
}
|
@@ -4270,6 +4306,8 @@ mutation PromptConversation($prompt: String!, $mimeType: String, $data: String,
|
|
4270
4306
|
model
|
4271
4307
|
data
|
4272
4308
|
mimeType
|
4309
|
+
toolCallId
|
4310
|
+
toolCallResponse
|
4273
4311
|
}
|
4274
4312
|
messageCount
|
4275
4313
|
facets {
|
@@ -4445,6 +4483,8 @@ mutation PromptConversation($prompt: String!, $mimeType: String, $data: String,
|
|
4445
4483
|
model
|
4446
4484
|
data
|
4447
4485
|
mimeType
|
4486
|
+
toolCallId
|
4487
|
+
toolCallResponse
|
4448
4488
|
}
|
4449
4489
|
}
|
4450
4490
|
}
|
@@ -4461,101 +4501,115 @@ mutation PublishConversation($id: ID!, $connector: ContentPublishingConnectorInp
|
|
4461
4501
|
workflow: $workflow
|
4462
4502
|
correlationId: $correlationId
|
4463
4503
|
) {
|
4464
|
-
|
4465
|
-
|
4466
|
-
|
4467
|
-
|
4468
|
-
|
4469
|
-
|
4470
|
-
|
4471
|
-
|
4472
|
-
|
4473
|
-
|
4474
|
-
|
4475
|
-
|
4476
|
-
|
4477
|
-
|
4478
|
-
|
4479
|
-
|
4480
|
-
|
4481
|
-
|
4482
|
-
|
4483
|
-
|
4484
|
-
|
4485
|
-
customSummary
|
4486
|
-
keywords
|
4487
|
-
bullets
|
4488
|
-
headlines
|
4489
|
-
posts
|
4490
|
-
chapters
|
4491
|
-
questions
|
4492
|
-
video {
|
4493
|
-
width
|
4494
|
-
height
|
4495
|
-
duration
|
4496
|
-
make
|
4497
|
-
model
|
4498
|
-
software
|
4499
|
-
title
|
4500
|
-
description
|
4501
|
-
keywords
|
4502
|
-
author
|
4503
|
-
}
|
4504
|
-
audio {
|
4505
|
-
keywords
|
4506
|
-
author
|
4507
|
-
series
|
4508
|
-
episode
|
4509
|
-
episodeType
|
4510
|
-
season
|
4511
|
-
publisher
|
4512
|
-
copyright
|
4513
|
-
genre
|
4514
|
-
title
|
4515
|
-
description
|
4516
|
-
bitrate
|
4517
|
-
channels
|
4518
|
-
sampleRate
|
4519
|
-
bitsPerSample
|
4520
|
-
duration
|
4521
|
-
}
|
4522
|
-
image {
|
4523
|
-
width
|
4524
|
-
height
|
4525
|
-
resolutionX
|
4526
|
-
resolutionY
|
4527
|
-
bitsPerComponent
|
4528
|
-
components
|
4529
|
-
projectionType
|
4530
|
-
orientation
|
4531
|
-
description
|
4532
|
-
make
|
4533
|
-
model
|
4534
|
-
software
|
4535
|
-
lens
|
4536
|
-
focalLength
|
4537
|
-
exposureTime
|
4538
|
-
fNumber
|
4539
|
-
iso
|
4540
|
-
heading
|
4541
|
-
pitch
|
4542
|
-
}
|
4543
|
-
document {
|
4544
|
-
title
|
4545
|
-
subject
|
4504
|
+
contents {
|
4505
|
+
id
|
4506
|
+
name
|
4507
|
+
state
|
4508
|
+
originalDate
|
4509
|
+
identifier
|
4510
|
+
markdown
|
4511
|
+
uri
|
4512
|
+
type
|
4513
|
+
fileType
|
4514
|
+
mimeType
|
4515
|
+
format
|
4516
|
+
formatName
|
4517
|
+
fileExtension
|
4518
|
+
fileName
|
4519
|
+
fileSize
|
4520
|
+
masterUri
|
4521
|
+
imageUri
|
4522
|
+
textUri
|
4523
|
+
audioUri
|
4524
|
+
transcriptUri
|
4546
4525
|
summary
|
4547
|
-
|
4548
|
-
publisher
|
4549
|
-
description
|
4526
|
+
customSummary
|
4550
4527
|
keywords
|
4551
|
-
|
4552
|
-
|
4553
|
-
|
4554
|
-
|
4555
|
-
|
4556
|
-
|
4557
|
-
|
4558
|
-
|
4528
|
+
bullets
|
4529
|
+
headlines
|
4530
|
+
posts
|
4531
|
+
chapters
|
4532
|
+
questions
|
4533
|
+
video {
|
4534
|
+
width
|
4535
|
+
height
|
4536
|
+
duration
|
4537
|
+
make
|
4538
|
+
model
|
4539
|
+
software
|
4540
|
+
title
|
4541
|
+
description
|
4542
|
+
keywords
|
4543
|
+
author
|
4544
|
+
}
|
4545
|
+
audio {
|
4546
|
+
keywords
|
4547
|
+
author
|
4548
|
+
series
|
4549
|
+
episode
|
4550
|
+
episodeType
|
4551
|
+
season
|
4552
|
+
publisher
|
4553
|
+
copyright
|
4554
|
+
genre
|
4555
|
+
title
|
4556
|
+
description
|
4557
|
+
bitrate
|
4558
|
+
channels
|
4559
|
+
sampleRate
|
4560
|
+
bitsPerSample
|
4561
|
+
duration
|
4562
|
+
}
|
4563
|
+
image {
|
4564
|
+
width
|
4565
|
+
height
|
4566
|
+
resolutionX
|
4567
|
+
resolutionY
|
4568
|
+
bitsPerComponent
|
4569
|
+
components
|
4570
|
+
projectionType
|
4571
|
+
orientation
|
4572
|
+
description
|
4573
|
+
make
|
4574
|
+
model
|
4575
|
+
software
|
4576
|
+
lens
|
4577
|
+
focalLength
|
4578
|
+
exposureTime
|
4579
|
+
fNumber
|
4580
|
+
iso
|
4581
|
+
heading
|
4582
|
+
pitch
|
4583
|
+
}
|
4584
|
+
document {
|
4585
|
+
title
|
4586
|
+
subject
|
4587
|
+
summary
|
4588
|
+
author
|
4589
|
+
publisher
|
4590
|
+
description
|
4591
|
+
keywords
|
4592
|
+
pageCount
|
4593
|
+
worksheetCount
|
4594
|
+
slideCount
|
4595
|
+
wordCount
|
4596
|
+
lineCount
|
4597
|
+
paragraphCount
|
4598
|
+
isEncrypted
|
4599
|
+
hasDigitalSignature
|
4600
|
+
}
|
4601
|
+
}
|
4602
|
+
details {
|
4603
|
+
contents {
|
4604
|
+
id
|
4605
|
+
}
|
4606
|
+
summaries
|
4607
|
+
text
|
4608
|
+
textType
|
4609
|
+
summarySpecification
|
4610
|
+
publishSpecification
|
4611
|
+
summaryTime
|
4612
|
+
publishTime
|
4559
4613
|
}
|
4560
4614
|
}
|
4561
4615
|
}
|
@@ -4697,6 +4751,8 @@ query QueryConversations($filter: ConversationFilter, $correlationId: String) {
|
|
4697
4751
|
model
|
4698
4752
|
data
|
4699
4753
|
mimeType
|
4754
|
+
toolCallId
|
4755
|
+
toolCallResponse
|
4700
4756
|
}
|
4701
4757
|
specification {
|
4702
4758
|
id
|
@@ -5038,6 +5094,8 @@ mutation ReviseContent($prompt: String!, $content: EntityReferenceInput!, $id: I
|
|
5038
5094
|
model
|
5039
5095
|
data
|
5040
5096
|
mimeType
|
5097
|
+
toolCallId
|
5098
|
+
toolCallResponse
|
5041
5099
|
}
|
5042
5100
|
messageCount
|
5043
5101
|
}
|
@@ -5179,6 +5237,8 @@ mutation ReviseEncodedImage($prompt: String!, $mimeType: String!, $data: String!
|
|
5179
5237
|
model
|
5180
5238
|
data
|
5181
5239
|
mimeType
|
5240
|
+
toolCallId
|
5241
|
+
toolCallResponse
|
5182
5242
|
}
|
5183
5243
|
messageCount
|
5184
5244
|
}
|
@@ -5319,6 +5379,8 @@ mutation ReviseImage($prompt: String!, $uri: URL!, $id: ID, $specification: Enti
|
|
5319
5379
|
model
|
5320
5380
|
data
|
5321
5381
|
mimeType
|
5382
|
+
toolCallId
|
5383
|
+
toolCallResponse
|
5322
5384
|
}
|
5323
5385
|
messageCount
|
5324
5386
|
}
|
@@ -5459,6 +5521,8 @@ mutation ReviseText($prompt: String!, $text: String!, $id: ID, $specification: E
|
|
5459
5521
|
model
|
5460
5522
|
data
|
5461
5523
|
mimeType
|
5524
|
+
toolCallId
|
5525
|
+
toolCallResponse
|
5462
5526
|
}
|
5463
5527
|
messageCount
|
5464
5528
|
}
|
@@ -8689,6 +8753,8 @@ mutation PromptSpecifications($prompt: String!, $ids: [ID!]!) {
|
|
8689
8753
|
model
|
8690
8754
|
data
|
8691
8755
|
mimeType
|
8756
|
+
toolCallId
|
8757
|
+
toolCallResponse
|
8692
8758
|
}
|
8693
8759
|
error
|
8694
8760
|
}
|
graphlit_api/prompt.py
CHANGED
@@ -47,6 +47,8 @@ class PromptPromptMessages(BaseModel):
|
|
47
47
|
model: Optional[str]
|
48
48
|
data: Optional[str]
|
49
49
|
mime_type: Optional[str] = Field(alias="mimeType")
|
50
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
51
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
50
52
|
|
51
53
|
|
52
54
|
class PromptPromptMessagesCitations(BaseModel):
|
@@ -58,6 +58,8 @@ class PromptConversationPromptConversationMessage(BaseModel):
|
|
58
58
|
model: Optional[str]
|
59
59
|
data: Optional[str]
|
60
60
|
mime_type: Optional[str] = Field(alias="mimeType")
|
61
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
62
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
61
63
|
|
62
64
|
|
63
65
|
class PromptConversationPromptConversationMessageCitations(BaseModel):
|
@@ -272,6 +274,8 @@ class PromptConversationPromptConversationDetailsMessages(BaseModel):
|
|
272
274
|
model: Optional[str]
|
273
275
|
data: Optional[str]
|
274
276
|
mime_type: Optional[str] = Field(alias="mimeType")
|
277
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
278
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
275
279
|
|
276
280
|
|
277
281
|
class PromptConversationPromptConversationDetailsMessagesCitations(BaseModel):
|
@@ -53,6 +53,8 @@ class PromptSpecificationsPromptSpecificationsMessages(BaseModel):
|
|
53
53
|
model: Optional[str]
|
54
54
|
data: Optional[str]
|
55
55
|
mime_type: Optional[str] = Field(alias="mimeType")
|
56
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
57
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
56
58
|
|
57
59
|
|
58
60
|
class PromptSpecificationsPromptSpecificationsMessagesCitations(BaseModel):
|
@@ -12,6 +12,7 @@ from .enums import (
|
|
12
12
|
FileTypes,
|
13
13
|
ImageProjectionTypes,
|
14
14
|
OrientationTypes,
|
15
|
+
TextTypes,
|
15
16
|
)
|
16
17
|
|
17
18
|
|
@@ -22,6 +23,11 @@ class PublishConversation(BaseModel):
|
|
22
23
|
|
23
24
|
|
24
25
|
class PublishConversationPublishConversation(BaseModel):
|
26
|
+
contents: Optional[List[Optional["PublishConversationPublishConversationContents"]]]
|
27
|
+
details: Optional["PublishConversationPublishConversationDetails"]
|
28
|
+
|
29
|
+
|
30
|
+
class PublishConversationPublishConversationContents(BaseModel):
|
25
31
|
id: str
|
26
32
|
name: str
|
27
33
|
state: EntityState
|
@@ -50,13 +56,13 @@ class PublishConversationPublishConversation(BaseModel):
|
|
50
56
|
posts: Optional[List[str]]
|
51
57
|
chapters: Optional[List[str]]
|
52
58
|
questions: Optional[List[str]]
|
53
|
-
video: Optional["
|
54
|
-
audio: Optional["
|
55
|
-
image: Optional["
|
56
|
-
document: Optional["
|
59
|
+
video: Optional["PublishConversationPublishConversationContentsVideo"]
|
60
|
+
audio: Optional["PublishConversationPublishConversationContentsAudio"]
|
61
|
+
image: Optional["PublishConversationPublishConversationContentsImage"]
|
62
|
+
document: Optional["PublishConversationPublishConversationContentsDocument"]
|
57
63
|
|
58
64
|
|
59
|
-
class
|
65
|
+
class PublishConversationPublishConversationContentsVideo(BaseModel):
|
60
66
|
width: Optional[int]
|
61
67
|
height: Optional[int]
|
62
68
|
duration: Optional[Any]
|
@@ -69,7 +75,7 @@ class PublishConversationPublishConversationVideo(BaseModel):
|
|
69
75
|
author: Optional[str]
|
70
76
|
|
71
77
|
|
72
|
-
class
|
78
|
+
class PublishConversationPublishConversationContentsAudio(BaseModel):
|
73
79
|
keywords: Optional[List[Optional[str]]]
|
74
80
|
author: Optional[str]
|
75
81
|
series: Optional[str]
|
@@ -88,7 +94,7 @@ class PublishConversationPublishConversationAudio(BaseModel):
|
|
88
94
|
duration: Optional[Any]
|
89
95
|
|
90
96
|
|
91
|
-
class
|
97
|
+
class PublishConversationPublishConversationContentsImage(BaseModel):
|
92
98
|
width: Optional[int]
|
93
99
|
height: Optional[int]
|
94
100
|
resolution_x: Optional[int] = Field(alias="resolutionX")
|
@@ -110,7 +116,7 @@ class PublishConversationPublishConversationImage(BaseModel):
|
|
110
116
|
pitch: Optional[float]
|
111
117
|
|
112
118
|
|
113
|
-
class
|
119
|
+
class PublishConversationPublishConversationContentsDocument(BaseModel):
|
114
120
|
title: Optional[str]
|
115
121
|
subject: Optional[str]
|
116
122
|
summary: Optional[str]
|
@@ -128,5 +134,22 @@ class PublishConversationPublishConversationDocument(BaseModel):
|
|
128
134
|
has_digital_signature: Optional[bool] = Field(alias="hasDigitalSignature")
|
129
135
|
|
130
136
|
|
137
|
+
class PublishConversationPublishConversationDetails(BaseModel):
|
138
|
+
contents: Optional[List["PublishConversationPublishConversationDetailsContents"]]
|
139
|
+
summaries: Optional[List[str]]
|
140
|
+
text: Optional[str]
|
141
|
+
text_type: Optional[TextTypes] = Field(alias="textType")
|
142
|
+
summary_specification: Optional[str] = Field(alias="summarySpecification")
|
143
|
+
publish_specification: Optional[str] = Field(alias="publishSpecification")
|
144
|
+
summary_time: Optional[Any] = Field(alias="summaryTime")
|
145
|
+
publish_time: Optional[Any] = Field(alias="publishTime")
|
146
|
+
|
147
|
+
|
148
|
+
class PublishConversationPublishConversationDetailsContents(BaseModel):
|
149
|
+
id: str
|
150
|
+
|
151
|
+
|
131
152
|
PublishConversation.model_rebuild()
|
132
153
|
PublishConversationPublishConversation.model_rebuild()
|
154
|
+
PublishConversationPublishConversationContents.model_rebuild()
|
155
|
+
PublishConversationPublishConversationDetails.model_rebuild()
|
graphlit_api/publish_text.py
CHANGED
@@ -12,6 +12,7 @@ from .enums import (
|
|
12
12
|
FileTypes,
|
13
13
|
ImageProjectionTypes,
|
14
14
|
OrientationTypes,
|
15
|
+
TextTypes,
|
15
16
|
)
|
16
17
|
|
17
18
|
|
@@ -20,6 +21,11 @@ class PublishText(BaseModel):
|
|
20
21
|
|
21
22
|
|
22
23
|
class PublishTextPublishText(BaseModel):
|
24
|
+
contents: Optional[List[Optional["PublishTextPublishTextContents"]]]
|
25
|
+
details: Optional["PublishTextPublishTextDetails"]
|
26
|
+
|
27
|
+
|
28
|
+
class PublishTextPublishTextContents(BaseModel):
|
23
29
|
id: str
|
24
30
|
name: str
|
25
31
|
state: EntityState
|
@@ -48,13 +54,13 @@ class PublishTextPublishText(BaseModel):
|
|
48
54
|
posts: Optional[List[str]]
|
49
55
|
chapters: Optional[List[str]]
|
50
56
|
questions: Optional[List[str]]
|
51
|
-
video: Optional["
|
52
|
-
audio: Optional["
|
53
|
-
image: Optional["
|
54
|
-
document: Optional["
|
57
|
+
video: Optional["PublishTextPublishTextContentsVideo"]
|
58
|
+
audio: Optional["PublishTextPublishTextContentsAudio"]
|
59
|
+
image: Optional["PublishTextPublishTextContentsImage"]
|
60
|
+
document: Optional["PublishTextPublishTextContentsDocument"]
|
55
61
|
|
56
62
|
|
57
|
-
class
|
63
|
+
class PublishTextPublishTextContentsVideo(BaseModel):
|
58
64
|
width: Optional[int]
|
59
65
|
height: Optional[int]
|
60
66
|
duration: Optional[Any]
|
@@ -67,7 +73,7 @@ class PublishTextPublishTextVideo(BaseModel):
|
|
67
73
|
author: Optional[str]
|
68
74
|
|
69
75
|
|
70
|
-
class
|
76
|
+
class PublishTextPublishTextContentsAudio(BaseModel):
|
71
77
|
keywords: Optional[List[Optional[str]]]
|
72
78
|
author: Optional[str]
|
73
79
|
series: Optional[str]
|
@@ -86,7 +92,7 @@ class PublishTextPublishTextAudio(BaseModel):
|
|
86
92
|
duration: Optional[Any]
|
87
93
|
|
88
94
|
|
89
|
-
class
|
95
|
+
class PublishTextPublishTextContentsImage(BaseModel):
|
90
96
|
width: Optional[int]
|
91
97
|
height: Optional[int]
|
92
98
|
resolution_x: Optional[int] = Field(alias="resolutionX")
|
@@ -108,7 +114,7 @@ class PublishTextPublishTextImage(BaseModel):
|
|
108
114
|
pitch: Optional[float]
|
109
115
|
|
110
116
|
|
111
|
-
class
|
117
|
+
class PublishTextPublishTextContentsDocument(BaseModel):
|
112
118
|
title: Optional[str]
|
113
119
|
subject: Optional[str]
|
114
120
|
summary: Optional[str]
|
@@ -126,5 +132,22 @@ class PublishTextPublishTextDocument(BaseModel):
|
|
126
132
|
has_digital_signature: Optional[bool] = Field(alias="hasDigitalSignature")
|
127
133
|
|
128
134
|
|
135
|
+
class PublishTextPublishTextDetails(BaseModel):
|
136
|
+
contents: Optional[List["PublishTextPublishTextDetailsContents"]]
|
137
|
+
summaries: Optional[List[str]]
|
138
|
+
text: Optional[str]
|
139
|
+
text_type: Optional[TextTypes] = Field(alias="textType")
|
140
|
+
summary_specification: Optional[str] = Field(alias="summarySpecification")
|
141
|
+
publish_specification: Optional[str] = Field(alias="publishSpecification")
|
142
|
+
summary_time: Optional[Any] = Field(alias="summaryTime")
|
143
|
+
publish_time: Optional[Any] = Field(alias="publishTime")
|
144
|
+
|
145
|
+
|
146
|
+
class PublishTextPublishTextDetailsContents(BaseModel):
|
147
|
+
id: str
|
148
|
+
|
149
|
+
|
129
150
|
PublishText.model_rebuild()
|
130
151
|
PublishTextPublishText.model_rebuild()
|
152
|
+
PublishTextPublishTextContents.model_rebuild()
|
153
|
+
PublishTextPublishTextDetails.model_rebuild()
|
@@ -69,6 +69,8 @@ class QueryConversationsConversationsResultsMessages(BaseModel):
|
|
69
69
|
model: Optional[str]
|
70
70
|
data: Optional[str]
|
71
71
|
mime_type: Optional[str] = Field(alias="mimeType")
|
72
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
73
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
72
74
|
|
73
75
|
|
74
76
|
class QueryConversationsConversationsResultsMessagesCitations(BaseModel):
|
graphlit_api/revise_content.py
CHANGED
@@ -49,6 +49,8 @@ class ReviseContentReviseContentMessage(BaseModel):
|
|
49
49
|
model: Optional[str]
|
50
50
|
data: Optional[str]
|
51
51
|
mime_type: Optional[str] = Field(alias="mimeType")
|
52
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
53
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
52
54
|
|
53
55
|
|
54
56
|
class ReviseContentReviseContentMessageCitations(BaseModel):
|
@@ -51,6 +51,8 @@ class ReviseEncodedImageReviseEncodedImageMessage(BaseModel):
|
|
51
51
|
model: Optional[str]
|
52
52
|
data: Optional[str]
|
53
53
|
mime_type: Optional[str] = Field(alias="mimeType")
|
54
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
55
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
54
56
|
|
55
57
|
|
56
58
|
class ReviseEncodedImageReviseEncodedImageMessageCitations(BaseModel):
|
graphlit_api/revise_image.py
CHANGED
@@ -47,6 +47,8 @@ class ReviseImageReviseImageMessage(BaseModel):
|
|
47
47
|
model: Optional[str]
|
48
48
|
data: Optional[str]
|
49
49
|
mime_type: Optional[str] = Field(alias="mimeType")
|
50
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
51
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
50
52
|
|
51
53
|
|
52
54
|
class ReviseImageReviseImageMessageCitations(BaseModel):
|
graphlit_api/revise_text.py
CHANGED
@@ -47,6 +47,8 @@ class ReviseTextReviseTextMessage(BaseModel):
|
|
47
47
|
model: Optional[str]
|
48
48
|
data: Optional[str]
|
49
49
|
mime_type: Optional[str] = Field(alias="mimeType")
|
50
|
+
tool_call_id: Optional[str] = Field(alias="toolCallId")
|
51
|
+
tool_call_response: Optional[str] = Field(alias="toolCallResponse")
|
50
52
|
|
51
53
|
|
52
54
|
class ReviseTextReviseTextMessageCitations(BaseModel):
|
{graphlit_client-1.0.20250502002.dist-info → graphlit_client-1.0.20250519001.dist-info}/RECORD
RENAMED
@@ -1,15 +1,15 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=56G5Am72og5QHIjEh9cy4vkfos7YVpGvzRuIPhPbCEU,1949
|
3
|
-
graphlit_api/__init__.py,sha256=
|
3
|
+
graphlit_api/__init__.py,sha256=WZMl_K7W0l7oEqaQuL6PREXpykqzQiZCztcSHmNSdrA,190406
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
|
-
graphlit_api/ask_graphlit.py,sha256=
|
5
|
+
graphlit_api/ask_graphlit.py,sha256=vt3Q3XIqgT7GmgIPcirwhGjpEP-nowuUDU0g_1DX_Xc,6433
|
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/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
9
9
|
graphlit_api/client.py,sha256=l9RC1Gg7FaRvjM6NDYb2TcdES7k8WfFwH4NaLjC0UgI,201736
|
10
10
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
11
|
-
graphlit_api/complete_conversation.py,sha256=
|
12
|
-
graphlit_api/continue_conversation.py,sha256=
|
11
|
+
graphlit_api/complete_conversation.py,sha256=WpFrPXdMoA4EQiyiquIScvq5DqVqe6to2L-YhihsNkY,16732
|
12
|
+
graphlit_api/continue_conversation.py,sha256=p-bVR3QdlbQeFq2p-DpBSTwZKwpz3k2-WWJrZfoxETI,16732
|
13
13
|
graphlit_api/count_alerts.py,sha256=R6mmFn817MueYWqkFmB_MaySOmhcpxZlFJ5o_b6WWB8,362
|
14
14
|
graphlit_api/count_categories.py,sha256=udhYJ_yaVuI40ytTDA0llezpPocsNB_8Apdz3MDS7pg,408
|
15
15
|
graphlit_api/count_collections.py,sha256=lIeJ8nr5Ou0T2QPHKLIm2sdvpYjIBZGK9_Rcbu1a6zA,416
|
@@ -149,25 +149,25 @@ graphlit_api/delete_specifications.py,sha256=AR9Ipo0_tNwnAUb2PSbpt3Mmzi-U_nZ345Z
|
|
149
149
|
graphlit_api/delete_user.py,sha256=ACVimDvC5JV4I8r9EsoKBTcW28DL4WYKnRIzCkz5KRo,390
|
150
150
|
graphlit_api/delete_workflow.py,sha256=8En1P3HYHc9h5PSZumSFQyLITlxGejgpB4pnlZ9Jz2w,436
|
151
151
|
graphlit_api/delete_workflows.py,sha256=9fHteXWNKeHJU1J54bKF7uxb3FFueQFanIBY0DreKfY,468
|
152
|
-
graphlit_api/describe_encoded_image.py,sha256=
|
153
|
-
graphlit_api/describe_image.py,sha256=
|
152
|
+
graphlit_api/describe_encoded_image.py,sha256=vF700CkZFCqOpTZ2_197zrE15u0DOnuhn60D3xs2p6I,6396
|
153
|
+
graphlit_api/describe_image.py,sha256=ZF_A_XUbgKWsJFZlc1WLRs8j25u5vtIPKjhxiR39V1w,6071
|
154
154
|
graphlit_api/disable_alert.py,sha256=HU9zswaGvDU3tqMp0OqnrBOhqfh_q5Ku8n865JjKKy4,406
|
155
155
|
graphlit_api/disable_feed.py,sha256=mfvNh7GapCMs9CKTvj6uwveN0tLfzGcD5nmgb8_T6HA,398
|
156
156
|
graphlit_api/disable_user.py,sha256=qfFXMq691gPVdFjF-mYzjcx6DIvZnsp5Nny5pl0qI9Q,398
|
157
157
|
graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,398
|
158
158
|
graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
|
159
159
|
graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
|
160
|
-
graphlit_api/enums.py,sha256
|
160
|
+
graphlit_api/enums.py,sha256=FDkBKefcPvl9wuBvK0gXFTUc5EG7fugT9Dv0lPeoYG4,27778
|
161
161
|
graphlit_api/exceptions.py,sha256=s0ECCqA83fhlv5GqIpT-fNFIZ7sRABG23Wj7DcEl4X0,2433
|
162
162
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
163
163
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
164
164
|
graphlit_api/feed_exists.py,sha256=NlvWhqVaV-coIV_orR-XsaXhG0Gll3bPVS3tPF0zEt0,351
|
165
|
-
graphlit_api/format_conversation.py,sha256=
|
165
|
+
graphlit_api/format_conversation.py,sha256=KCC515DadUyVTxa6Tm9qj_V4iJCtIP0_zWqobvNwDO0,16346
|
166
166
|
graphlit_api/get_alert.py,sha256=yw9TLx7iD4d60gaSm4typqQEHt8Y0tyb9xqg504hssQ,7193
|
167
167
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
168
168
|
graphlit_api/get_collection.py,sha256=de2AaJQRkMEZoRhmYWnXlXlb1c76cF2Z8v6PwaL7wTk,830
|
169
169
|
graphlit_api/get_content.py,sha256=nMUyT7FE52rcqZWee4voconMMAp3yHP820eQMwY3zHo,11061
|
170
|
-
graphlit_api/get_conversation.py,sha256=
|
170
|
+
graphlit_api/get_conversation.py,sha256=7pU2DQSb9smsTRlRYCFntFlcwS8Ua4S7z6-Pd42OFls,17641
|
171
171
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
172
172
|
graphlit_api/get_feed.py,sha256=thNnL79fN00-hO5uJxMcDn3FYfQPuND_WsrQ4glVCkg,11843
|
173
173
|
graphlit_api/get_label.py,sha256=0SmukTbSktKnVlx_FpVf3lxFOQVQ6RAiRj4kglnt3eI,418
|
@@ -205,20 +205,20 @@ graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,
|
|
205
205
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
206
206
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
207
207
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
208
|
-
graphlit_api/operations.py,sha256=
|
209
|
-
graphlit_api/prompt.py,sha256=
|
210
|
-
graphlit_api/prompt_conversation.py,sha256=
|
211
|
-
graphlit_api/prompt_specifications.py,sha256=
|
208
|
+
graphlit_api/operations.py,sha256=XTWoSqZ4pEmzuY75omjoq1ut8TVgfgr_hsH3koDkoo0,188188
|
209
|
+
graphlit_api/prompt.py,sha256=OgNooYRVrNeUlQKNq_WQcM--yZWiP0e1-8joiK5cKfA,6147
|
210
|
+
graphlit_api/prompt_conversation.py,sha256=7eeFb3oAoAeBMNOZ6tEMmiWs2ReDLBCsI0iiA9wnvlA,16346
|
211
|
+
graphlit_api/prompt_specifications.py,sha256=D7YLCfYs7ZFbeqM9rc8UYHBmxDoBHR6YJjpUN32w7BY,7034
|
212
212
|
graphlit_api/publish_contents.py,sha256=C1F6g_sSvhW33B3pc2YwFH9KHs_MgQb7nfu7jr5u6XE,5558
|
213
|
-
graphlit_api/publish_conversation.py,sha256=
|
214
|
-
graphlit_api/publish_text.py,sha256=
|
213
|
+
graphlit_api/publish_conversation.py,sha256=efLRrjWKsGKzwP2S5otD_6BbSZzQOQnQYrLo9eq0d2U,5726
|
214
|
+
graphlit_api/publish_text.py,sha256=U1O4U7Mg75kK2u26O_uyxd1G3DEmTAMFRnLgubSGVw0,5376
|
215
215
|
graphlit_api/query_alerts.py,sha256=AisS4rRrkkhjoTSw79_t7feCM60w6dXDr0piKW6gW74,8275
|
216
216
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
217
217
|
graphlit_api/query_collections.py,sha256=lQoUD4-ZiQYWa2ZeyOqVXokEA9IbkqJhrG56O0p8QVU,1075
|
218
218
|
graphlit_api/query_contents.py,sha256=e5vWK6LR5BE_eNx2cmwjtopOWUb1bz_Z3OdxDeONPUA,11697
|
219
219
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
220
220
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
221
|
-
graphlit_api/query_conversations.py,sha256=
|
221
|
+
graphlit_api/query_conversations.py,sha256=SV_4-hHSoSAmYzkxWJGrr1DDkA97K00YEYft-qMB2gs,19769
|
222
222
|
graphlit_api/query_credits.py,sha256=6uJqn4iYfBfsUtSMTCSuV4d2VTiYR4gR5tEeDH5Cf9o,1396
|
223
223
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
224
224
|
graphlit_api/query_feeds.py,sha256=lux15n2tARERMXgWwa-iuEvpv1MS_LcGmgc2Seq5Z60,12889
|
@@ -257,10 +257,10 @@ graphlit_api/query_users.py,sha256=b50tNVR79XOcVqAGjxcjEsHe0Ka9rhXJzJHrEfaCP7Y,2
|
|
257
257
|
graphlit_api/query_workflows.py,sha256=AqkmFsfGCrXqN4jAHBqLkwupqRyOSqLIlf2QBB6Qfx0,16250
|
258
258
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
259
259
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
260
|
-
graphlit_api/revise_content.py,sha256=
|
261
|
-
graphlit_api/revise_encoded_image.py,sha256
|
262
|
-
graphlit_api/revise_image.py,sha256=
|
263
|
-
graphlit_api/revise_text.py,sha256=
|
260
|
+
graphlit_api/revise_content.py,sha256=M7S1Zvkl5E5ludXXxjylenqJF2EH6BQDTS_Om0FCDO0,6549
|
261
|
+
graphlit_api/revise_encoded_image.py,sha256=zMuzHO0NRt8wHb3luTy1rYB45rmvynWN8LnC-K1wPmU,6838
|
262
|
+
graphlit_api/revise_image.py,sha256=SCTKYkwu_4i8n_Pgod8KxXR97kI0hQJMRxy4BD8ph98,6433
|
263
|
+
graphlit_api/revise_text.py,sha256=S0O8rFs1J2xc2APKp1AAXKcF1-oDGa_VfBBgWNMrWF4,6381
|
264
264
|
graphlit_api/screenshot_page.py,sha256=CkRMlxuOIh5T9KOdotvLlfS8oD1W8jFNBD2RypoktII,2464
|
265
265
|
graphlit_api/search_web.py,sha256=lIMSo-i4aWtVtYb5RX511WwOD0ijRhm9K579XqR-w10,554
|
266
266
|
graphlit_api/send_notification.py,sha256=fV6j94gV45uslgB56MN6g5nQ3g7Kq0vX1rfDS37svRc,413
|
@@ -303,8 +303,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
|
|
303
303
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
304
304
|
graphlit_api/upsert_workflow.py,sha256=QL5Gi8jqF4wG9_qReoW8E5X7VsSIsLzgxIY1aAK0ebo,15692
|
305
305
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
306
|
-
graphlit_client-1.0.
|
307
|
-
graphlit_client-1.0.
|
308
|
-
graphlit_client-1.0.
|
309
|
-
graphlit_client-1.0.
|
310
|
-
graphlit_client-1.0.
|
306
|
+
graphlit_client-1.0.20250519001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
307
|
+
graphlit_client-1.0.20250519001.dist-info/METADATA,sha256=WCM9HODtFeqzHI9_OdWx4f1YkI1bkfvEGNLLwz59vMM,3408
|
308
|
+
graphlit_client-1.0.20250519001.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
309
|
+
graphlit_client-1.0.20250519001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
310
|
+
graphlit_client-1.0.20250519001.dist-info/RECORD,,
|
File without changes
|
File without changes
|