From 0f5bf94f9f4db009a7742666d86910e4497abeee Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Mon, 13 May 2024 11:05:53 -0700 Subject: [PATCH] infra: remove ai21 docs scan features (#21614) ai21 depends on ai21-tokenizer which depends on too restrictive/old version of `tokenizers` --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 339baa9ae92..db9990cc508 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -13,7 +13,7 @@ OUTPUT_NEW_DOCS_DIR = $(OUTPUT_NEW_DIR)/docs PYTHON = .venv/bin/python -PARTNER_DEPS_LIST := $(shell find ../libs/partners -mindepth 1 -maxdepth 1 -type d -exec test -e "{}/pyproject.toml" \; -print | grep -vE "airbyte|ibm" | tr '\n' ' ') +PARTNER_DEPS_LIST := $(shell find ../libs/partners -mindepth 1 -maxdepth 1 -type d -exec test -e "{}/pyproject.toml" \; -print | grep -vE "airbyte|ibm|ai21" | tr '\n' ' ') PORT ?= 3001