1.0.1 • Published 2 years ago
@realtorbotsai/chatbot v1.0.1
RealtorBot
A React-based chatbot component tailored for real estate applications. Easily integrate RealtorBot into your React app to assist users with property searches, scheduling viewings, answering FAQs, and more.
Installation
npm install @realtorbotsai/chatbotUsage
Below is a basic example of how to use the RealtorbotAI component in your React application. You’ll need an apiKey to connect to the RealtorBot service.
import React from "react";
import { RealtorbotAI } from "@realtorbotsai/chatbot";
const App: React.FC = () => {
return (
<RealtorbotAI apiKey="your-api-key-here" />
);
};
export default App;Replace "your-api-key-here" with your actual API key.
Props
| Prop | Type | Description | Required |
|---|---|---|---|
apiKey | string | Your unique API key for accessing RealtorBot’s backend services. | Yes |
License
MIT License