python310Packages.langchain: add clarifai as an optional-dependency

This commit is contained in:
natsukium 2023-06-28 22:54:01 +09:00
parent 4f84f7c81b
commit 5f2679727c
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -17,6 +17,7 @@
, bash
# optional dependencies
, anthropic
, clarifai
, cohere
, openai
, nlpcloud
@ -123,6 +124,7 @@ buildPythonPackage rec {
passthru.optional-dependencies = {
llms = [
anthropic
clarifai
cohere
openai
nlpcloud
@ -140,6 +142,9 @@ buildPythonPackage rec {
text_helpers = [
chardet
];
clarifai = [
clarifai
];
cohere = [
cohere
];
@ -157,6 +162,7 @@ buildPythonPackage rec {
];
all = [
anthropic
clarifai
cohere
openai
nlpcloud