January 4: Support for askGraphlit mutation, storage policies, bug fixes
New Features
💡 Graphlit now supports the
askGraphlit
mutation, which is a built-in support chat which lets you create SDK code samples, or ask questions about the Graphlit Platform itself. It is similar topromptConversation
but is prefilled with relevant content, and doesn't rely on the existing content in the project. (Next.js Sample Application) (Colab Notebook Example)Graphlit now supports the
storage
stage in theworkflow
object, which allows you to control the storage policies and whether duplicate contents (by eTag or URI) are allowed.Graphlit now supports storage policies with the
StoragePolicyTypes
enum, which instructs the platform toARCHIVE
the content indefinitely (the current default), orMINIMIZE
the storage footprint by removing the cached master file when the workflow finishes. WithMINIMIZE
, themasterUri
property will be null after the workflow finishes. We will be adding a storage policy for time-based aging (deletion) of content in the future.We have added support for the
includeDetails
flag in thepublishContents
mutation, so you can get more detailed information on the intermediate results during content publishing.We have added support for the Google Flash 2.0 Experimental Thinking model, with the enum
GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL
. Note, the experimental models have no charge, and the 'Thinking' model only supports 32K token context window.⚡ We have changed the parameter name in
sharePointFolders
fromdriveId
tolibraryId
for consistency.
Bugs Fixed
GPLA-3671: Failed to index PDF from Dropbox download link
GPLA-3675: Incorrectly inferring HTML PDF page wrapper as PDF
Last updated