LibreChat

Link to App

Link to GitHub or Website

LibreChat brings together the future of assistant AIs with the revolutionary technology of OpenAI's ChatGPT. Celebrating the original styling, LibreChat gives you the ability to integrate multiple AI models. It also integrates and enhances original client features such as conversation and message search, prompt templates and plugins.

With LibreChat, you no longer need to opt for ChatGPT Plus and can instead use free or pay-per-call APIs. We welcome contributions, cloning, and forking to enhance the capabilities of this advanced chatbot platform.

This app is hosted on Cocoa as a docker container

This stack is made up of 3 containers,

  • API

  • MeiliSearch

  • MogoDB

https://github.com/trentnbauer/agg/blob/77307eabf5df738b76d5c4c7c6bcf58bd435ef5b/docker-compose/librechat.yml
version: "3.8"

services:
  api:
    image: ghcr.io/danny-avila/librechat:v0.6.10
    ports:
      - $PORT:3080
    restart: always
    env_file:
      - ../stack.env
    volumes:
      - librechat_images:/app/client/public/images
    networks:
      librechat:
        aliases:
          - api

  meilisearch:
    image: getmeili/meilisearch:v1.5.1
    restart: always
    env_file:
      - ../stack.env
    volumes:
      - meili_data:/meili_data
    networks:
      librechat:
        aliases:
          - meilisearch
          
  mongodb:
    image: mongo
    restart: always
    #user: "${UID}:${GID}"
    env_file:
      - ../stack.env
    volumes:
      - mongo_data:/data/db
    command: mongod --noauth
    networks:
      librechat:
        aliases:
          - mongodb

volumes:
  librechat_images:
    driver: local
  meili_data:
    driver: local
  mongo_data:
    driver: local

networks:
  librechat:
    driver: bridge

Instance 1

Port
Purpose

3080

WebUI

Host Volume
Container Volume
Purpose

librechat_librachat_images

/app/client/public/images

Integration
Purpose

GPT3.5 & 4

Bing AI

Microsoft's AI

Google AI

Bard & Gemini

Last updated

Was this helpful?