Skip to content
IntelliNode edited this page Sep 9, 2023 · 2 revisions

Intelliserver is a microservice providing production access to multiple AI models, with extended functions such as search, chatbot, and evaluation. This open-source repo allows you to add custom use cases on top of the existing capabilities.

Quick start:

# pull the image from docker hub
docker pull intellinode/intelliserver:latest

# run with custom keys
API_KEY=<Microservice_API_KEY>
ADMIN_KEY=<ADMIN_KEY>
docker run -p 80:80 -e API_KEY=$API_KEY -e ADMIN_KEY=$ADMIN_KEY intellinode/intelliserver:latest
Clone this wiki locally