Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 505 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 505 Bytes

LLM Playground

Instructions

Create a virtual environment

# Run the following in an empty directory to create a virtual environment
# On Windows
python -m venv venv
.\venv\Scripts\activate.ps1

# On Apple
python3 -m venv venv 
source venv/bin/activate

Run following command to install

pip install openllm
pip install -r requirements.txt
# Uses pytorch for the backend
openllm start dolly-v2 --model-id databricks/dolly-v2-3b --backend pt