From a81178f1f590952c356d3803bd7585cb02f0b2e8 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 4 Nov 2024 20:35:53 -0800 Subject: [PATCH] The server now depends on SQLite by default --- llama_stack/distribution/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llama_stack/distribution/build.py b/llama_stack/distribution/build.py index e3a9d9186..0a989d2e4 100644 --- a/llama_stack/distribution/build.py +++ b/llama_stack/distribution/build.py @@ -25,6 +25,7 @@ from llama_stack.distribution.utils.config_dirs import BUILDS_BASE_DIR # These are the dependencies needed by the distribution server. # `llama-stack` is automatically installed by the installation script. SERVER_DEPENDENCIES = [ + "aiosqlite", "fastapi", "fire", "httpx",