From 208ccc83ecbc1817db57cd35b1f92b259ec31934 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Sat, 10 Feb 2024 09:32:04 +0530 Subject: [PATCH] Fix version of gpt4all to 2.1.0 as it's not backwards compatible --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bfe8cc2c..cc4bdea9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,8 +63,8 @@ dependencies = [ "pymupdf >= 1.23.5", "django == 4.2.7", "authlib == 1.2.1", - "gpt4all >= 2.1.0; platform_system == 'Linux' and platform_machine == 'x86_64'", - "gpt4all >= 2.1.0; platform_system == 'Windows' or platform_system == 'Darwin'", + "gpt4all == 2.1.0; platform_system == 'Linux' and platform_machine == 'x86_64'", + "gpt4all == 2.1.0; platform_system == 'Windows' or platform_system == 'Darwin'", "itsdangerous == 2.1.2", "httpx == 0.25.0", "pgvector == 0.2.4",