Skip to content
forked from bit-gpt/app

Prem provides a unified environment to develop AI applications and deploy AI models on your infrastructure

License

Notifications You must be signed in to change notification settings

jaytoday/prem-app

 
 

Repository files navigation

Logo

🤖 Prem - Self Sovereign AI Infrastructure

Version Release Twitter Discord

Prem provides a unified environment to develop AI applications and deploy AI models on your infrastructure. Abstracting away all technical complexities for AI deployment and ushering in a new era of privacy-centric AI applications - users can finally retain control and ownership of their models.

🚀 Getting started

Demo

ScreenStudio1App.mp4

Install on Linux

Install everything needed to run Prem on Ubuntu/Debian server

wget -q https://get.prem.ninja/install.sh -O install.sh; sudo bash ./install.sh

If you encounter issues or you want to build the Prem App docker image inside your Linux server

CPU

git clone https://github.com/premAI-io/prem-app.git
cd ./prem-app
docker-compose up -d

GPU (Nvidia)

git clone https://github.com/premAI-io/prem-app.git
cd ./prem-app
docker-compose up -f docker-compose.yml -f docker-compose.gpu.yml -d

Product Roadmap

The AI services expose an HTTP API interface, standardized for their interface type. For example, all models of type Chat expose the OpenAI API for easy of integration of existing tool and AI app ecosystem. Each service we support it's published on the Prem Registry.

Anyone can prepare, package and publish an AI service on Prem. Instructions coming soon.

Interfaces

  • 😃 Chat
  • 📕 Embedding
  • 🏛️ Vector Store
  • 🎨 Diffuser
  • 💻 Coder
  • 🎵 Text to Audio
  • 🎵 Audio to Text
  • 📷 Vision
  • 📖 Summary
  • 🖼️ Upscaler
  • 📹 Video

Contributing

Run the app with Tauri

Make sure to remove any value in the .env file.

npm i
npm run tauri dev

Run the app with React

# run the daemon
docker-compose up -d premd

# copy .env.example file in .env
cp .env.example

npm i
npm run dev

Environment Variables

  • VITE_BACKEND_URL : destination of the premd
  • VITE_DESTINATION : browser | desktop
  • IS_PACKAGED : true | false used for server packaging.

Contributing to Prem Daemon

Running the Daemon locally

git clone https://github.com/premAI-io/prem-daemon.git
cd ./prem-daemon

# create a python virtual environment and activate it
virtualenv venv -p=3.10
source ./venv/bin/activate

# install the necessary dependencies
pip install -r requirements.txt

# configure pre-commit hooks
pre-commit install

# run the webserver
cp .env.example .env
python main.py

Mock Registry

In order to use the mock registry, you can specify the REGISTRY_URL environment variable as following:

PREM_REGISTRY_URL=https://raw.githubusercontent.com/premAI-io/prem-daemon/main/resources/mocks/manifests.json

The mock registry is not fully tested. Few interfaces could be broken.

Running the test cases

pytest

Release Checklist

  • Create a tag with the new version in prem-daemon
  • Update the version in prem-box here
  • Create a tag with the new version in prem-app
  • Update the version in prem-box here

Acknowledgments

Thank You ❤️

About

Prem provides a unified environment to develop AI applications and deploy AI models on your infrastructure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 82.7%
  • CSS 12.7%
  • Rust 3.0%
  • Shell 0.7%
  • JavaScript 0.6%
  • HTML 0.2%
  • Dockerfile 0.1%