SDK
Examples
Common SDK usage examples.
Create a Project
const project = await client.projects.create({
name: 'My Project',
description: 'A new project',
});Send a Chat Message
const response = await client.chat({
projectId: project.id,
message: 'Summarize the latest activity',
});