Skip to content

Commit

Permalink
Updated to latest API release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirk-marple committed Nov 17, 2024
1 parent b708a29 commit d4e10db
Show file tree
Hide file tree
Showing 9 changed files with 1,442 additions and 0 deletions.
123 changes: 123 additions & 0 deletions documents/content/DescribeEncodedImage.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
mutation DescribeEncodedImage($prompt: String!, $mimeType: String!, $data: String!, $specification: EntityReferenceInput, $correlationId: String) {
describeEncodedImage(prompt: $prompt, mimeType: $mimeType, data: $data, specification: $specification, correlationId: $correlationId) {
role
author
message
citations {
content {
id
name
state
originalDate
identifier
uri
type
fileType
mimeType
format
formatName
fileExtension
fileName
fileSize
masterUri
imageUri
textUri
audioUri
transcriptUri
summary
customSummary
keywords
bullets
headlines
posts
chapters
questions
video {
width
height
duration
make
model
software
title
description
keywords
author
}
audio {
keywords
author
series
episode
episodeType
season
publisher
copyright
genre
title
description
bitrate
channels
sampleRate
bitsPerSample
duration
}
image {
width
height
resolutionX
resolutionY
bitsPerComponent
components
projectionType
orientation
description
make
model
software
lens
focalLength
exposureTime
fNumber
iso
heading
pitch
}
document {
title
subject
summary
author
publisher
description
keywords
pageCount
worksheetCount
slideCount
wordCount
lineCount
paragraphCount
isEncrypted
hasDigitalSignature
}
}
index
text
startTime
endTime
pageNumber
frameNumber
}
toolCalls {
id
name
arguments
}
tokens
throughput
completionTime
timestamp
modelService
model
}
}
123 changes: 123 additions & 0 deletions documents/content/DescribeImage.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
mutation DescribeImage($prompt: String!, $uri: URL!, $specification: EntityReferenceInput, $correlationId: String) {
describeImage(prompt: $prompt, uri: $uri, specification: $specification, correlationId: $correlationId) {
role
author
message
citations {
content {
id
name
state
originalDate
identifier
uri
type
fileType
mimeType
format
formatName
fileExtension
fileName
fileSize
masterUri
imageUri
textUri
audioUri
transcriptUri
summary
customSummary
keywords
bullets
headlines
posts
chapters
questions
video {
width
height
duration
make
model
software
title
description
keywords
author
}
audio {
keywords
author
series
episode
episodeType
season
publisher
copyright
genre
title
description
bitrate
channels
sampleRate
bitsPerSample
duration
}
image {
width
height
resolutionX
resolutionY
bitsPerComponent
components
projectionType
orientation
description
make
model
software
lens
focalLength
exposureTime
fNumber
iso
heading
pitch
}
document {
title
subject
summary
author
publisher
description
keywords
pageCount
worksheetCount
slideCount
wordCount
lineCount
paragraphCount
isEncrypted
hasDigitalSignature
}
}
index
text
startTime
endTime
pageNumber
frameNumber
}
toolCalls {
id
name
arguments
}
tokens
throughput
completionTime
timestamp
modelService
model
}
}
129 changes: 129 additions & 0 deletions documents/conversation/ReviseText.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
mutation ReviseText($prompt: String!, $text: String!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
reviseText(prompt: $prompt, text: $text, id: $id, specification: $specification, correlationId: $correlationId) {
conversation {
id
}
message {
role
author
message
citations {
content {
id
name
state
originalDate
identifier
uri
type
fileType
mimeType
format
formatName
fileExtension
fileName
fileSize
masterUri
imageUri
textUri
audioUri
transcriptUri
summary
customSummary
keywords
bullets
headlines
posts
chapters
questions
video {
width
height
duration
make
model
software
title
description
keywords
author
}
audio {
keywords
author
series
episode
episodeType
season
publisher
copyright
genre
title
description
bitrate
channels
sampleRate
bitsPerSample
duration
}
image {
width
height
resolutionX
resolutionY
bitsPerComponent
components
projectionType
orientation
description
make
model
software
lens
focalLength
exposureTime
fNumber
iso
heading
pitch
}
document {
title
subject
summary
author
publisher
description
keywords
pageCount
worksheetCount
slideCount
wordCount
lineCount
paragraphCount
isEncrypted
hasDigitalSignature
}
}
index
text
startTime
endTime
pageNumber
frameNumber
}
toolCalls {
id
name
arguments
}
tokens
throughput
completionTime
timestamp
modelService
model
}
messageCount
}
}
Loading

0 comments on commit d4e10db

Please sign in to comment.