Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cheshire-cat-ai/admin-vue

Admin panel of the Cheshire Cat AI
https://github.com/cheshire-cat-ai/admin-vue

admin ai cheshire-cat frontend panel vue

Last synced: about 2 hours ago
JSON representation

Admin panel of the Cheshire Cat AI

Awesome Lists containing this project

README

        


Discord Server


GitHub Stars


GitHub Forks


GitHub License


GitHub Issues


GitHub Pull Requests

# Cheshire Cat Admin UI 🐱

This is the source code to build the admin client for the Cheshire Cat AI.

## About the project

The Cheshire Cat is a framework to build long-tail AIs:

- Language model agnostic, allows compatibility with OpenAI, Cohere, HuggingFace, and custom models
- Long-term memory storage capabilities
- Seamless integration with external tools, such as APIs and other models
- Ability to ingest various document formats, including PDFs and text files
- 100% dockerized for simple and efficient deployment
- Extensibility via plugins, offering unparalleled flexibility to users.

### Pre-requisites

Make sure you have the following installed on your machine:

```bash
node v18.15+
```

### Installation

This project uses `pnpm` as the package manager. You can install it by running:

```bash
npm install -g pnpm
```

Then, install the dependencies:

```bash
pnpm install
```

### Scripts

Here's a list of scripts that you can run to get the app up and running

#### Dev mode

Run the app in dev mode with hot-reloading enabled and the browser automatically opening on port `3000` (default)

```bash
pnpm run dev
```

#### Build

Build the app for production

```bash
pnpm run build
```

#### Start the app

Runs the build and serves the built app on port `3000` (default)

```bash
pnpm run preview
```