https://github.com/vnadh/rnai
This project implements an AI-powered chatbot using React for the frontend, Node.js for the backend, and Google's PaLM 2 API for natural language processing.
https://github.com/vnadh/rnai
chatbot nodejs reactjs
Last synced: 3 months ago
JSON representation
This project implements an AI-powered chatbot using React for the frontend, Node.js for the backend, and Google's PaLM 2 API for natural language processing.
- Host: GitHub
- URL: https://github.com/vnadh/rnai
- Owner: Vnadh
- Created: 2024-03-10T17:24:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T01:24:00.000Z (over 2 years ago)
- Last Synced: 2024-04-19T05:18:35.846Z (about 2 years ago)
- Topics: chatbot, nodejs, reactjs
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RN.ai - AI Chatbot with React, Node.js, and PaLM 2 API
This project implements an AI-powered chatbot using React for the frontend, Node.js for the backend, and Google's PaLM 2 API for natural language processing.
## Getting Started
### Prerequisites:
* Node.js and npm (or yarn) installed on your system (https://nodejs.org/)
* A Google AI Platform account with access to the PaLM 2 API (limited availability, waitlist might apply)
### Clone the Repository:
``` git clone https://github.com/Vnadh/rnai.git ```
### Install Dependencies:
* Install dependencies for the client:-
```
cd client
npm install
```
* Install dependencies for the server:-
```
cd server
npm install
```
* Obtain your Palm 2 API key from Palm 2 website and add it to your project configuration.
* create a env file in server as follows:-
```
API_KEY=your-api-key
```
### Start the application:
* For the client:
```
cd client
npm run dev
```
* For the server:
```
cd server
node index.js
```
### Screenshots:-


### feel free to make your own changes