BeyondLLM
CtrlK
  • Getting started
    • πŸ“„Overview
    • πŸ”§Installation
    • πŸš€Quickstart Guide
  • Core Components
    • 🌐Source
    • 🧬Embeddings
    • πŸ€–Auto Retriever
      • πŸ”«Evaluate retriever
    • πŸ’ΌVector Store
    • 🧠LLMs
    • πŸ”‹Generator
    • 🧠Memory
    • πŸ“ŠEvaluation
    • ⏰Observability
  • Advanced RAG
    • πŸ“šRe-ranker Retrievers
    • πŸ”€Hybrid Retrievers
    • πŸ“Finetune Embeddings
  • Integration
    • πŸ¦œοΈπŸ”— Langchain
    • πŸ¦™ LlamaIndex
  • Use Cases
    • πŸ’¬Chat with PowerPoint Presentation
    • πŸ”Document Search and Chat
    • πŸ€–Customer Service Bot
    • πŸ—£οΈMultilingual RAG
  • How to Guides
    • βž•How to add new LLM?
    • βž•How to add new Embeddings?
    • βž•How to add a new Loader?
  • Community Spotlight
    • πŸ”„Share your work
    • πŸ‘Acknowledgements
Powered by GitBook
On this page
  1. Getting started

πŸ”§Installation

Create virtual environment

python3 -m venv env 
source env/bin/activate

or

virtualenv env
source env/bin/activate

Install BeyondLLM

pip install beyondllm

Install on Google Colab

!pip install beyondllm

You might have to restart your colab session.

PreviousOverviewNextQuickstart Guide

Last updated 1 year ago