Skip to content

v0.1.1

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Jun 20:24
· 1578 commits to main since this release

πŸŽ‰ Hello world, OpenLLM

OpenLLM version 0.1.1 brings initial support for SOTA LLMs (more to come!!):

Model CPU GPU Installation Model Ids
flan-t5 βœ… βœ…
pip install "openllm[flan-t5]"
  • google/flan-t5-small
  • google/flan-t5-base
  • google/flan-t5-large
  • google/flan-t5-xl
  • google/flan-t5-xxl
  • dolly-v2 βœ… βœ…
    pip install openllm
  • databricks/dolly-v2-3b
  • databricks/dolly-v2-7b
  • databricks/dolly-v2-12b
  • chatglm ❌ βœ…
    pip install "openllm[chatglm]"
  • thudm/chatglm-6b
  • thudm/chatglm-6b-int8
  • thudm/chatglm-6b-int4
  • starcoder ❌ βœ…
    pip install "openllm[starcoder]"
  • bigcode/starcoder
  • bigcode/starcoderbase
  • falcon ❌ βœ…
    pip install "openllm[falcon]"
  • tiiuae/falcon-7b
  • tiiuae/falcon-40b
  • tiiuae/falcon-7b-instruct
  • tiiuae/falcon-40b-instruct
  • stablelm βœ… βœ…
    pip install openllm
  • stabilityai/stablelm-tuned-alpha-3b
  • stabilityai/stablelm-tuned-alpha-7b
  • stabilityai/stablelm-base-alpha-3b
  • stabilityai/stablelm-base-alpha-7b
  • Quickly startup falcon locally, with openllm start falcon:

    openllm start falcon

    Easily bundle this LLM into Bento, a portable format that can be easily deployed everywhere:

    openllm build falcon

    Refers to the README.md for more details

    Installation

    pip install openllm==0.1.1

    To upgrade from a previous version, use the following command:

    pip install --upgrade openllm==0.1.1

    Usage

    All available models: python -m openllm.models

    To start a LLM: python -m openllm start dolly-v2

    Full Changelog: v0.1.0...v0.1.1