From 345bcc30c7022b597edcd418ce18df16d6274d04 Mon Sep 17 00:00:00 2001 From: kingbri Date: Thu, 21 Mar 2024 00:02:13 -0400 Subject: [PATCH] Dependencies: Add extras feature Installs all optional dependencies to the venv. Signed-off-by: kingbri --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2cf961c..d8f2144 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,11 @@ dependencies = [ "Homepage" = "https://github.com/theroyallab/tabbyAPI" [project.optional-dependencies] +extras = [ + "tokenizers", + "outlines", + "lm-format-enforcer", +] dev = [ "ruff == 0.3.2" ]