@cpod/sdk - v0.2.7
    Preparing search index...

    Function createProjectChat

    • Create a new chat within a project

      Parameters

      Returns Promise<ProjectChat>

      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}`);