From 29797c6b6d2d56b7956a55efe2f2096317da46cd Mon Sep 17 00:00:00 2001 From: Andrew Lapp Date: Tue, 20 Feb 2024 03:34:56 -0600 Subject: [PATCH] add docker build to contribute guide --- docs/community/contribute.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/community/contribute.md b/docs/community/contribute.md index f5aff632d..243ae59ca 100644 --- a/docs/community/contribute.md +++ b/docs/community/contribute.md @@ -46,10 +46,10 @@ pre-commit install ```bash docker build -t outlines-serve . -docker run -p 8012:8000 outlines-serve +docker run -p 8012:8000 outlines-serve --model="mistralai/Mistral-7B-Instruct-v0.2" ``` -This builds and runs `outlines-serve` on `localhost:8012` +This builds `outlines-serve` and runs on `localhost:8012` with the model `Mistral-7B-Instruct-v0.2` ### Before pushing your code