December 9: Support for website mapping, web page screenshots, Groq Llama 3.3 model, bug fixes
New Features
π‘ Graphlit now supports mapping a website with the
mapWeb
mutation. You can provide a URL to a website, and the query will return a list of URLs based on the sitemap.xml (or sitemap-index.xml) file, at or underneath the provided URL.π‘ Graphlit now supports the generation of web page screenshots with the
screenshotPage
mutation. By providing the URL of a web page, and optionally, the maximum desired height of the screenshot, we will screenshot the webpage and ingest it automatically as content. You can provide an optional workflow, which will be applied to the ingested image content, for operations like generating image descriptions with a vision LLM.π‘ Graphlit now supports the direct summarization of text with the
summarizeText
mutation. By providing the desired summarization strategy, we will summarize the text (i.e. bullet points, social media posts) and return the summarization.π‘ Graphlit now supports the direct extraction of text with the
extractText
mutation. By providing the LLM tool definitions and an optional LLM specification, we will prompt the desired LLM (or OpenAI GPT-4o, by default) to invoke the provided tools, and return the JSON responses from the LLM tool calling.Graphlit now supports the latest Groq Llama 3.3 model, with the model enum
LLAMA_3_3_70B
.We have updated Cohere reranking to use the latest Cohere
rerank-v3.5
model by default.β‘ We have added a new
flattenCitations
field to theConversationStrategyInput
type. By assigning this field to True, when callingpromptConversation,
we will combine multiple citations from the same content into a single citation.β‘ For Microsoft email, Microsoft Teams and OneDrive feeds, we have added the
clientId
andclientSecret
fields as required feed properties. These properties must be assigned, in addition to therefreshToken
field for proper authentication to the Microsoft Graph API used by these feeds. (Colab Notebook Example)
Bugs Fixed
GPLA-3492: Not finding sitemap at parent web path
GPLA-3500: Failed to handle mismatch of Deepgram model/language
Last updated