Create a new chat within a project
The unique identifier of the project
Chat creation data (title)
The newly created project chat
401 - Not authenticated
404 - Project not found
import { createProjectChat } from "@cpod/sdk";const chat = await createProjectChat("project-123", { title: "Analysis Discussion",});console.log(`Created chat: ${chat.id}`); Copy
import { createProjectChat } from "@cpod/sdk";const chat = await createProjectChat("project-123", { title: "Analysis Discussion",});console.log(`Created chat: ${chat.id}`);
Create a new chat within a project