Follow us on or RSSto be up
to date with the latest changes.

v1.17.0

Dashboard

// January 7, 2025

Client-side chat requests

Chat requests in Gram Elements now execute client-side, simplifying the architecture and improving responsiveness. The chat handler has been removed from the server package as chat requests now happen directly from the client. A new session handler has been introduced for backend implementations that need server-side session management.

Features

  • Client-side chat requests - Chat requests now execute directly from the client, reducing server-side complexity and improving response times.
  • Session handler - A new session handler has been added to the server package for consumers who need backend session management.

Bug fixes

  • TypeDoc improvements - Fixed TSDoc comments for multiple type definitions in the Elements library, improving developer documentation.
Sagar Batchu
Sagar Batchu
View on GitHub

v1.16.0

Dashboard

// January 5, 2025

Introducing Gram Elements

Gram Elements is a library of UI primitives for building chat-like experiences for MCP Servers. Gram Elements Chat Demo The first release of Gram Elements includes:
  • An all-in-one <Chat /> component that encapsulates the entire chat lifecycle, including built-in support for tool calling and streaming responses
  • A powerful configuration framework to refine the chat experience, including different layouts, theming, and much more

Getting started

Here's a preview of adding Elements to a chat application:
import {
GramElementsProvider,
Chat,
type ElementsConfig
} from '@gram-ai/elements'
import '@gram-ai/elements/elements.css'
const config: ElementsConfig = {
projectSlug: '{project_slug}',
mcp: 'https://app.getgram.ai/mcp/{mcp_slug}',
chatEndpoint: '/chat/completions',
variant: 'widget',
welcome: {
title: 'Hello!',
subtitle: 'How can I help you today?',
},
composer: {
placeholder: 'Ask me anything...',
},
modal: {
defaultOpen: true,
},
}
export const App = () => {
return (
<GramElementsProvider config={config}>
<Chat />
</GramElementsProvider>
)
}
Check out the Gram Elements documentation to get started.
Sagar Batchu
Sagar Batchu
View on GitHub