Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rajveeerr/10xanswers-fe

The 10xAnswers is a React-based, fully customizable chatbot component designed for seamless integration into your projects. With features like a draggable interface, markdown support, and real-time backend communication. You can see the customize the chatBot and get the code from the website link below.
https://github.com/rajveeerr/10xanswers-fe

chatbot component customization markdown npm-package package react recoil router-dom tailwindcss ui ux-ui

Last synced: 10 days ago
JSON representation

The 10xAnswers is a React-based, fully customizable chatbot component designed for seamless integration into your projects. With features like a draggable interface, markdown support, and real-time backend communication. You can see the customize the chatBot and get the code from the website link below.

Awesome Lists containing this project

README

        

# 10xAnswers: ChatBot Component

10xAnswers is an easy-to-integrate, fully customizable, and draggable chatbot component built with React and Recoil. It allows you to add an intelligent chatbot to your project with minimal effort—no need to build one from scratch. Simply configure the prompt and provide the backend URL (or use our hosted service if you don’t want to build the backend yourself).

With 10xAnswers, you get both the frontend component and a backend solution, streamlining the process of adding a chatbot to your project. Just provide the URL and you're good to go—whether you want to build your own backend or use our hosted solution.

[![npm version](https://badge.fury.io/js/10xanswers.svg)](https://badge.fury.io/js/10xanswers)
[![License](https://img.shields.io/npm/l/10xanswers.svg)](https://github.com/rajveeerr/10xanswers/blob/main/LICENSE)
[![Downloads](https://img.shields.io/npm/dm/10xanswers.svg)](https://www.npmjs.com/package/10xanswers)

![10xAnswers Banner](https://github.com/user-attachments/assets/64a70341-2631-4b94-a7b7-35b71f2d6363)

# Table of Contents

1. [Introduction](#introduction)
2. [Demo](#demo)
3. [Features](#features)
4. [Installation](#installation)
5. [Quick Example](#quick-example)
6. [Props](#props)
- [Basic Props](#basic-props)
- [Styling Props](#styling-props)
7. [Advanced Usage](#advanced-usage)
8. [All Props](#all-props)
- [Props Overview](#props-overview)
9. [Prompt Guidelines](#prompt-guidelines)
- [Default Prompt](#default-prompt)
- [Custom Prompt](#custom-prompt)
10. [Gemini API Integration](#gemini-api-integration)
11. [Backend Integration](#backend-integration)
- [URL-based Integration](#url-based-integration)
12. [Warnings and Important Notes](#warning-and-important-notes)
13. [Screenshots](#screenshots)
14. [Upcoming Features](#upcoming-features)
15. [Author](#author)
16. [Contribution and Support](#contribution-and-support)

## Demo

Screenshot 2024-12-03 at 12 19 56 PM

Screenshot 2024-12-03 at 12 20 55 PM

# See Live Demo and Customization:

You can see the 10xAnswers chatbot in action, customize its appearance, behavior, and features, and even get the exact code to integrate it into your own website!

Visit the demo and customization page at: https://10x-answers.vercel.app/
Try adjusting the settings to see how the chatbot reacts to different configurations.
After customizing the chatbot, you can copy the generated code and implement it directly into your project to use the same customized bot on your website.

## Features

- **Plug-and-Play**: Simple to install and use.
- **Awesome UI**: The chat bot has clean modern UI, so it would look great on your project.
- **Customizable**: Style the chat window, bot icon, and entire chat component as per your needs.
- **Markdown Support**: Render rich text, including code blocks and tables, in chatbot responses.
- **Editable User Input**: Users can modify their questions and easily copy responses.
- **State Management with Recoil**: Optimized state handling to ensure smooth performance.
- **Connectivity Check**: Includes a custom hook to display internet connectivity status.
- **Draggable Interface**: Move the chatbot around the screen for an optimal user experience and flexible placement.
- **Backend Support**: Option to use your backend or provided URL for response generation.
- **Open Source**: Fully accessible codebase for contributions and enhancements.
- **Future Features**: Media and voice support, as well as additional themes, are coming soon.

## Installation

```bash
npm install 10xanswers
# or
yarn add 10xanswers
# or
pnpm add 10xanswers
```

## Quick Example

```jsx
import React from 'react';
import { ChatBot } from '10xanswers';

function App() {
return (

);
}

export default App;
```

**Important**: The provided URL `https://ask-10x-questions.vercel.app/` is a pre-configured backend that works seamlessly with the 10xAnswers component.

## Props

### Basic Props

| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `backendUrl` | `string` | - | Backend URL for chat processing, required |
| `geminiApi` | `string` | - | Gemini API key for direct integration if no backend availaible(not recommended)|
| `title` | `string` | "10xAnswers" | Chat window title |
| `draggable` | `boolean` | `false` | Enable/disable dragging |
| `startOpen` | `boolean` | `false` | Initial chat window state(open/colsed) |

### Styling Props

| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `chatWindowStyle` | `object` | `{}` | Inline styles for chat window |
| `chatBotIconStyle` | `object` | `{}` | Inline styles for bot icon |
| `chatComponentStyle` | `object` | `{}` | Inline styles for chat component |

## Advanced Usage

```jsx

```

## All Props

### Props

| Prop Name | Type | Description |
|------------------------|----------|-------------------------------------------------------------------------------------------------|
| `chatWindowStyle` | Object | Inline CSS for chat window styling. |
| `chatBotIconStyle` | Object | Inline CSS for bot icon styling. |
| `chatComponentStyle` | Object | Inline CSS for overall chat component styling. |
| `chatWindowClassName` | String | Tailwind classes for chat window styling. |
| `chatBotIconClassName` | String | Tailwind classes for bot icon styling. |
| `backendUrl` | String | **Required** if no Gemini API is provided. URL for backend to process requests. |
| `title` | String | Custom title for the chatbot window. |
| `botIcon` | String | Path to the bot icon image. |
| `userIcon` | String | Path to the user icon image. |
| `stylizeTitle` | Object | Object with `emphasized` and `normal` strings to style the title. |
| `prompt` | String | Custom prompt for the chatbot. Use `"none"` for no prompting. |
| `geminiApi` | String | Required if no `backendUrl` is provided. |
| `theme` | String | Theme for the chatbot (currently not implemented). |
| `draggable` | Boolean | Enable or disable draggable functionality. |
| `x` | Number | Initial x-position for draggable mode. |
| `y` | Number | Initial y-position for draggable mode. |
| `description` | String | Description text for the chatbot. |
| `cta` | String | Call-to-action text for the chatbot button. |
| `startOpen` | Boolean | Whether the chatbot window starts open (`true`) or closed (`false`). |

---

### Prompt Guidelines

- **With `prompt`**: If a custom prompt is provided, it will be sent along with the user question.
- **Without `prompt`**: If `prompt` is set to `"none"`, only the user question with no prompt is sent to the ai model- not recommended.

---

### Example Prompts

**Default Prompt**:
If no prompt is provided, default prompt will be sent to the model along with the questions asked by client
```text
You are 10xAnswers, an intelligent and highly versatile chatbot. Your purpose is to assist users with precision, accuracy, and clarity...
```

**Custom Prompt**:
You can specify your custom prompts here, every question of client will be sentto model along with this prompt
```text
User is sending a custom prompt about behavior. Prompt: ${prompt}. Question: ${question}. History: ${chatHistory}.
```

---

### Gemini API Integration
If you don't have a working backend you can directly use Google's Gemini API and pass it in the props, and send requests to the gemini
directly from frontend. Not recommended as this exposes the api key to the users of your web app.

## Backend Integration

### URL-based Integration
POST requests are sent to backend with the following payload:

```json
{
"method": "POST",
"body": {
"contents": [{
"parts": [{"text": "User question"}]
}]
}
}
```

## Warning and Important Notes

**Development Caution**:
- After changing any prop of the chat component, changes will only be visible after reloading.
- Exposing Gemini API key directly in frontend is NOT recommended as it exposes your key to users.
- Since the z-index of chatbot component is set to 999, it might give some troubles while building your site, you can change the z-ndex of component by applying styles in the chatComponent coinatiner.
Example:
```jsx ```

## Screenshots

## Screenshots

| ![file (4)](https://github.com/user-attachments/assets/e63d62e0-b28b-44ca-b479-81c56e411c09) | ![Screenshot 2](https://github.com/user-attachments/assets/e02046e1-bb25-4488-aae9-6e30ee1140a0) |
| -------------------------------------------------- | -------------------------------------------------- |
| ![Screenshot 3](https://github.com/user-attachments/assets/575fdab5-3f65-4b84-aaf1-a9317a73dfe0) | ![Screenshot 4](https://github.com/user-attachments/assets/dd6b8032-3347-48ca-b7b8-efdf05e9e30a) |

### Example Usage

Screenshot 2024-12-02 at 3 18 29 AM

## Upcoming Features

- [ ] Media message support
- [ ] Voice interaction modes
- [ ] Additional themes
- [ ] Enhanced customization options

## Author

Rajveer Singh
- Twitter: [@rajveeerrsingh](https://x.com/rajveeerrsingh)

## Contribution and Support

- Open-source contributions welcome
- Contact on:
- X (Twitter): https://x.com/RajveeerrSingh
- GitHub: https://github.com/rajveeerr

Found an issue? [Open a GitHub Issue](https://github.com/yourusername/10xanswers/issues)

Enjoying 10xAnswers? Consider starring the repository! ⭐

---

Start building smarter projects with **10xAnswers** today! 🚀