@companydna/rcp-client
Version:
RCP Client npm package
46 lines (27 loc) • 1.05 kB
Markdown
**RCP Client npm Package**
This package is developed and maintained exclusively by CompanyDNA AI Inc. for internal use only.
**CompanyDNA RAG Context Protocol (RCP)** is a scalable NodeJS-based middleware deployed on AWS, Azure, and Google Cloud. It integrates data from applications, custom databases, and web scraping, then processes and structures it into vector databases for fast, secure Retrieval-Augmented Generation (RAG) operations with multi-model AI integration.
## Installation
Install the package using npm or yarn:
### Using npm
```bash
npm install @companydna/rcp-client
```
### Using yarn
```bash
yarn add @companydna/rcp-client
```
## Usage
Initialize the RCP client with your secret key as shown below:
```js
import { RCP } from '@companydna/rcp-client';
const rcp = new RCP({
secretKey: 'your secret key',
});
```
Replace `"your secret key"` with your actual secret key.
This package is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
---