graphiti-sdk
v1.0.0
Published
Unofficial SDK for ZEP Graphiti API
Maintainers
Readme
Graphiti SDK
An unofficial autogenerated typescript SDK for Zep's Graphiti server. There is full typescript support available
import {createClient} from 'graphiti-sdk';
const client = createClient({
baseUrl:'http://localhost:8000'
})
const { data, error } = await client.POST('/messages', {
body: {
group_id: "test",
"messages": [
{
"content": "string",
"uuid": "string",
"name": "",
"role_type": "user",
"role": "string",
"timestamp": "2025-09-23T19:29:41.249Z",
"source_description": ""
}
]
}
});
