Quick Start

Get your AI chat interface up and running in minutes.

Installation & Setup

Install the library and create your first chat interface with our step-by-step guide.

Core Features

Everything you need to build sophisticated AI-powered chat experiences.

What’s Possible

Build powerful applications with advanced AI capabilities.
Enable users to interact with blockchain smart contracts through natural language. Supports MetaMask integration, multi-chain networks, and automatic transaction handling.
Create AI assistants that can search through your documentation, knowledge bases, and provide contextual information with source references.
Allow your AI to make REST API calls, execute custom functions, and integrate with external services automatically based on conversation context.
Enable sophisticated reasoning and acting patterns where the AI can think through problems step-by-step and take appropriate actions.

Example Implementation

Here’s what a basic implementation looks like:
import { ChatInterface } from '@termix-it/react-tool';
// No need to import CSS - styles are now bundled with components

function App() {
  return (
    <div className="h-screen">
      <ChatInterface
        projectId="your-project-id"
        aiConfigId="your-ai-config-id"
        authorization="Bearer your-jwt-token"
        enableStreamingMode={true} // Enable real-time streaming
        placeholder="Type your message..."
      />
    </div>
  );
}

Next Steps