7 releases

new 0.1.26 Dec 12, 2024
0.1.25 Dec 11, 2024
0.1.0 Sep 6, 2024

#479 in Database interfaces

Download history 104/week @ 2024-09-06 21/week @ 2024-09-13 16/week @ 2024-09-20 7/week @ 2024-09-27 1/week @ 2024-10-04 2/week @ 2024-11-15 522/week @ 2024-12-06

524 downloads per month

Apache-2.0

195KB
4K SLoC

Rust 3K SLoC // 0.1% comments Python 759 SLoC // 0.3% comments Shell 15 SLoC // 0.2% comments Forge Config 9 SLoC

Outlines-core Logo

Contributors

Structured generation (in Rust).

This package provides the core functionality for structured generation, formerly implemented in Outlines, with a focus on performance and portability.

Install

We provide bindings to the following languages:

The latest release of the Python bindings is available on PyPi using pip:

pip install outlines-core

The current development branch of outlines-core can be installed from GitHub, also using pip:

pip install git+https://github.com/outlines-dev/outlines-core

Or install in a rust project with cargo:

cargo add outlines-core

How to contribute?

Setup

First, fork the repository on GitHub and clone the fork locally:

git clone [email protected]/YourUserName/outlines-core.git
cd outlines-core

Create a new virtual environment:

python -m venv .venv
source .venv/bin/activate

Then install the dependencies in editable mode, and install the pre-commit hooks:

pip install -e ".[test]"
pre-commit install

Before pushing your code

Run the tests:

pytest

And run the code style checks:

pre-commit run --all-files

Dependencies

~17–30MB
~453K SLoC