0.0.30

AI agent improvements, knowledge base training, and widget design enhancements

Smarter AI agents with knowledge base training, improved widget design, and performance enhancements.

Support Widget

  • updated

    Design: Improved visual alignment and consistency with Cossistant branding.

  • fixed

    Messages: Fixed message display and storage issues.

  • updated

    Performance: Enhanced visitor context retrieval and conversation navigation.

Dashboard

  • new

    Knowledge Base: Upload files and FAQs to train your AI agent.

  • new

    Auto-crawl: AI can automatically scan your website to build knowledge sources.

  • updated

    Smart Inbox: Better conversation management and read indicators.

Bug Fixes & Improvements

  • updated

    AI Responses: More accurate replies with memory and multiple knowledge sources.

  • fixed

    Email Replies: Resolved issues with replying to email conversations.

  • fixed

    Type Checking: Improved TypeScript type definitions.

Upgrade

pnpm add @cossistant/react@0.0.30 @cossistant/next@0.0.30
0.0.29

Bug fixes and performance improvements

Bug fixes and performance improvements for React 19 support and AI agent escalation.

Support Widget

  • updated

    React 19 support: Full compatibility with React 18 and 19.

  • fixed

    Text area line breaks: Fixed line breaks being skipped in message input.

Dashboard

  • updated

    AI agent escalation: Agents now correctly escalate conversations to human support.

  • updated

    WebSocket handling: Improved real-time event handling for AI agents.

Upgrade

pnpm add @cossistant/react@0.0.29 @cossistant/next@0.0.29
0.0.28

Performance improvements, controlled widget support, and enhanced contact management

Significant performance improvements for the React widget with better composability, automatic positioning, and a new contact management system.

Support Widget

  • new

    Controlled mode: Widget can now be controlled with open and setOpen props.

  • new

    Custom components: Support for custom trigger and content components.

  • new

    Smart positioning: Automatic collision avoidance ensures visibility.

  • new

    Event handling: New event system for analytics integration.

  • updated

    Performance: Reduced queries and improved overall performance.

Dashboard

  • new

    Contact management: Mini-CRM system to manage contact information.

  • new

    File sharing: Upload images and documents in conversations.

  • new

    AI typing preview: See when AI is composing a response.

Bug Fixes

  • fixed

    WebSocket: Improved connection management and reliability.

  • fixed

    Timeline: Enhanced conversation scrolling behavior.

  • fixed

    Types: Fixed typing issues across the codebase.

Upgrade

pnpm add @cossistant/react@0.0.28 @cossistant/next@0.0.28

Example

import { Support } from "@cossistant/next";
 
export function App() {
  const [open, setOpen] = useState(false);
 
  return (
    <Support
      open={open}
      onOpenChange={setOpen}
      avoidCollisions={true}
      onEvent={(event) => console.log("Widget event:", event)}
    />
  );
}