diff --git a/libs/cli/langchain_cli/package_template/README.md b/libs/cli/langchain_cli/package_template/README.md index 6ac7f54b7a..87daa656aa 100644 --- a/libs/cli/langchain_cli/package_template/README.md +++ b/libs/cli/langchain_cli/package_template/README.md @@ -11,7 +11,7 @@ TODO: What environment variables need to be set (if any) To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/libs/cli/langchain_cli/project_template/README.md b/libs/cli/langchain_cli/project_template/README.md index 887af0f2b3..241a5cebc4 100644 --- a/libs/cli/langchain_cli/project_template/README.md +++ b/libs/cli/langchain_cli/project_template/README.md @@ -5,7 +5,7 @@ Install the LangChain CLI if you haven't yet ```bash -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` ## Adding packages diff --git a/templates/README.md b/templates/README.md index d3042ddebf..4cd6b8df82 100644 --- a/templates/README.md +++ b/templates/README.md @@ -11,7 +11,7 @@ They are all in a standard format which make it easy to deploy them with [LangSe To use, first install the LangChain CLI. ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` Next, create a new LangChain project: diff --git a/templates/anthropic-iterative-search/README.md b/templates/anthropic-iterative-search/README.md index 981df0712c..4a94815002 100644 --- a/templates/anthropic-iterative-search/README.md +++ b/templates/anthropic-iterative-search/README.md @@ -14,7 +14,7 @@ Set the `ANTHROPIC_API_KEY` environment variable to access the Anthropic models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/cassandra-entomology-rag/README.md b/templates/cassandra-entomology-rag/README.md index e4804be7a2..cc117aed7c 100644 --- a/templates/cassandra-entomology-rag/README.md +++ b/templates/cassandra-entomology-rag/README.md @@ -19,7 +19,7 @@ The connection parameters and secrets must be provided through environment varia To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/cassandra-synonym-caching/README.md b/templates/cassandra-synonym-caching/README.md index f619890bbb..2426100cf5 100644 --- a/templates/cassandra-synonym-caching/README.md +++ b/templates/cassandra-synonym-caching/README.md @@ -18,7 +18,7 @@ _Note:_ you can alternatively use a regular Cassandra cluster: to do so, make su To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/csv-agent/README.md b/templates/csv-agent/README.md index e5f6075942..03602ad6b9 100644 --- a/templates/csv-agent/README.md +++ b/templates/csv-agent/README.md @@ -14,7 +14,7 @@ To set up the environment, the `ingest.py` script should be run to handle the in To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/docs/CONTRIBUTING.md b/templates/docs/CONTRIBUTING.md index 932f235e63..3888df1d44 100644 --- a/templates/docs/CONTRIBUTING.md +++ b/templates/docs/CONTRIBUTING.md @@ -11,7 +11,7 @@ Set up an appropriate dev environment, and make sure you are in this `templates` Make sure you have `langchain-cli` installed. ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` You can then run the following command to create a new skeleton of a package. diff --git a/templates/docs/LAUNCHING_PACKAGE.md b/templates/docs/LAUNCHING_PACKAGE.md index 8077f5d1e6..4d08aea89d 100644 --- a/templates/docs/LAUNCHING_PACKAGE.md +++ b/templates/docs/LAUNCHING_PACKAGE.md @@ -26,7 +26,7 @@ This information can be used to launch a LangServe instance automatically. In order to do this, first make sure the CLI is installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` You can then run: diff --git a/templates/elastic-query-generator/README.md b/templates/elastic-query-generator/README.md index 6e46b092e3..8e2ee26944 100644 --- a/templates/elastic-query-generator/README.md +++ b/templates/elastic-query-generator/README.md @@ -32,7 +32,7 @@ This will create a `customers` index. In this package, we specify indexes to gen To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/extraction-anthropic-functions/README.md b/templates/extraction-anthropic-functions/README.md index 46e9b2e190..0ff8b6afed 100644 --- a/templates/extraction-anthropic-functions/README.md +++ b/templates/extraction-anthropic-functions/README.md @@ -16,7 +16,7 @@ Set the `ANTHROPIC_API_KEY` environment variable to access the Anthropic models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/extraction-openai-functions/README.md b/templates/extraction-openai-functions/README.md index 3ebcce7206..8266d8e177 100644 --- a/templates/extraction-openai-functions/README.md +++ b/templates/extraction-openai-functions/README.md @@ -14,7 +14,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/guardrails-output-parser/README.md b/templates/guardrails-output-parser/README.md index 3fca967cd2..488b6a5e9c 100644 --- a/templates/guardrails-output-parser/README.md +++ b/templates/guardrails-output-parser/README.md @@ -16,7 +16,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/hybrid-search-weaviate/README.md b/templates/hybrid-search-weaviate/README.md index f015072495..fd2c9dd13f 100644 --- a/templates/hybrid-search-weaviate/README.md +++ b/templates/hybrid-search-weaviate/README.md @@ -15,7 +15,7 @@ You will also need to set your `OPENAI_API_KEY` to use the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/hyde/README.md b/templates/hyde/README.md index 3fbfe0dca4..8edfecb7f4 100644 --- a/templates/hyde/README.md +++ b/templates/hyde/README.md @@ -20,7 +20,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/llama2-functions/README.md b/templates/llama2-functions/README.md index 6520ef87f1..4d6303acf8 100644 --- a/templates/llama2-functions/README.md +++ b/templates/llama2-functions/README.md @@ -16,7 +16,7 @@ Ensure that `REPLICATE_API_TOKEN` is set in your environment. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/neo4j-cypher-ft/README.md b/templates/neo4j-cypher-ft/README.md index 769434f3ad..203be7c786 100644 --- a/templates/neo4j-cypher-ft/README.md +++ b/templates/neo4j-cypher-ft/README.md @@ -29,7 +29,7 @@ This script will populate the database with sample movie data and create a full- To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/neo4j-cypher/README.md b/templates/neo4j-cypher/README.md index 864e3796d8..980ad0a5cb 100644 --- a/templates/neo4j-cypher/README.md +++ b/templates/neo4j-cypher/README.md @@ -36,7 +36,7 @@ This script will populate the database with sample movie data. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/neo4j-generation/README.md b/templates/neo4j-generation/README.md index 85de22c76d..5707c00987 100644 --- a/templates/neo4j-generation/README.md +++ b/templates/neo4j-generation/README.md @@ -27,7 +27,7 @@ NEO4J_PASSWORD= To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/neo4j-parent/README.md b/templates/neo4j-parent/README.md index e985feb8a9..8f8f98865c 100644 --- a/templates/neo4j-parent/README.md +++ b/templates/neo4j-parent/README.md @@ -30,7 +30,7 @@ Additionally, a vector index named `retrieval` is created for efficient querying To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/openai-functions-agent/README.md b/templates/openai-functions-agent/README.md index 756907cbdf..dd8ef2be57 100644 --- a/templates/openai-functions-agent/README.md +++ b/templates/openai-functions-agent/README.md @@ -18,7 +18,7 @@ Set the `TAVILY_API_KEY` environment variable to access Tavily. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/pirate-speak/README.md b/templates/pirate-speak/README.md index e2122778a2..531bae48f1 100644 --- a/templates/pirate-speak/README.md +++ b/templates/pirate-speak/README.md @@ -12,7 +12,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/plate-chain/README.md b/templates/plate-chain/README.md index e703e9e628..26c94638ed 100644 --- a/templates/plate-chain/README.md +++ b/templates/plate-chain/README.md @@ -16,7 +16,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To utilize plate-chain, you must have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` Creating a new LangChain project and installing plate-chain as the only package can be done with: diff --git a/templates/rag-aws-bedrock/README.md b/templates/rag-aws-bedrock/README.md index 5d4f550393..2dc1fc7f62 100644 --- a/templates/rag-aws-bedrock/README.md +++ b/templates/rag-aws-bedrock/README.md @@ -29,7 +29,7 @@ You should also set the following environment variables to reflect your AWS prof First, install the LangChain CLI: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package: diff --git a/templates/rag-aws-kendra/README.md b/templates/rag-aws-kendra/README.md index 51abca62f9..efd3f1f945 100644 --- a/templates/rag-aws-kendra/README.md +++ b/templates/rag-aws-kendra/README.md @@ -31,7 +31,7 @@ The following environment variables need to be set: To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-chroma-private/README.md b/templates/rag-chroma-private/README.md index 1df5199b7b..a2a2004b06 100644 --- a/templates/rag-chroma-private/README.md +++ b/templates/rag-chroma-private/README.md @@ -26,7 +26,7 @@ This package also uses [GPT4All](https://python.langchain.com/docs/integrations/ To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-chroma/README.md b/templates/rag-chroma/README.md index 5965a8f730..f39aaeb297 100644 --- a/templates/rag-chroma/README.md +++ b/templates/rag-chroma/README.md @@ -14,7 +14,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-codellama-fireworks/README.md b/templates/rag-codellama-fireworks/README.md index 6f3c2cfbe7..b679f7a6cc 100644 --- a/templates/rag-codellama-fireworks/README.md +++ b/templates/rag-codellama-fireworks/README.md @@ -16,7 +16,7 @@ You can obtain it from [here](https://app.fireworks.ai/login?callbackURL=https:/ To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-conversation/README.md b/templates/rag-conversation/README.md index 353a62e654..4c31fff358 100644 --- a/templates/rag-conversation/README.md +++ b/templates/rag-conversation/README.md @@ -16,7 +16,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-elasticsearch/README.md b/templates/rag-elasticsearch/README.md index 157e569b76..f2103f28a8 100644 --- a/templates/rag-elasticsearch/README.md +++ b/templates/rag-elasticsearch/README.md @@ -32,7 +32,7 @@ docker run -p 9200:9200 -e "discovery.type=single-node" -e "xpack.security.enabl To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-fusion/README.md b/templates/rag-fusion/README.md index ea91ab1edf..bc5eb07549 100644 --- a/templates/rag-fusion/README.md +++ b/templates/rag-fusion/README.md @@ -14,7 +14,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-matching-engine/README.md b/templates/rag-matching-engine/README.md index aae9c56e8a..83f83335fe 100644 --- a/templates/rag-matching-engine/README.md +++ b/templates/rag-matching-engine/README.md @@ -25,7 +25,7 @@ ME_ENDPOINT_ID To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-momento-vector-index/README.md b/templates/rag-momento-vector-index/README.md index 392eb3c840..89000d51be 100644 --- a/templates/rag-momento-vector-index/README.md +++ b/templates/rag-momento-vector-index/README.md @@ -19,7 +19,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-mongo/README.md b/templates/rag-mongo/README.md index 92341f91e7..ab0d1e4c1d 100644 --- a/templates/rag-mongo/README.md +++ b/templates/rag-mongo/README.md @@ -18,7 +18,7 @@ export OPENAI_API_KEY=... To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-pinecone-multi-query/README.md b/templates/rag-pinecone-multi-query/README.md index 0501e05346..821bd26471 100644 --- a/templates/rag-pinecone-multi-query/README.md +++ b/templates/rag-pinecone-multi-query/README.md @@ -18,7 +18,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first install the LangChain CLI: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this package, do: diff --git a/templates/rag-pinecone-rerank/README.md b/templates/rag-pinecone-rerank/README.md index 55227c166e..70d01721ad 100644 --- a/templates/rag-pinecone-rerank/README.md +++ b/templates/rag-pinecone-rerank/README.md @@ -18,7 +18,7 @@ Set the `COHERE_API_KEY` environment variable to access the Cohere ReRank. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-pinecone/README.md b/templates/rag-pinecone/README.md index 4b9865becc..b0c4260b33 100644 --- a/templates/rag-pinecone/README.md +++ b/templates/rag-pinecone/README.md @@ -14,7 +14,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-redis/README.md b/templates/rag-redis/README.md index c2db4bb686..c22bded456 100644 --- a/templates/rag-redis/README.md +++ b/templates/rag-redis/README.md @@ -36,7 +36,7 @@ We use a variety of environment variables to configure this application To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-semi-structured/README.md b/templates/rag-semi-structured/README.md index 55e268d5f9..710525c51a 100644 --- a/templates/rag-semi-structured/README.md +++ b/templates/rag-semi-structured/README.md @@ -21,7 +21,7 @@ brew install tesseract poppler To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-singlestoredb/README.md b/templates/rag-singlestoredb/README.md index ec699d7d78..4a0f664ec1 100644 --- a/templates/rag-singlestoredb/README.md +++ b/templates/rag-singlestoredb/README.md @@ -14,7 +14,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-supabase/README.md b/templates/rag-supabase/README.md index 899bb5c034..44b8051d74 100644 --- a/templates/rag-supabase/README.md +++ b/templates/rag-supabase/README.md @@ -76,7 +76,7 @@ Since we are using [`SupabaseVectorStore`](https://python.langchain.com/docs/int First, install the LangChain CLI: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-timescale-hybrid-search-time/README.md b/templates/rag-timescale-hybrid-search-time/README.md index 3bd1e2162b..2702d31abb 100644 --- a/templates/rag-timescale-hybrid-search-time/README.md +++ b/templates/rag-timescale-hybrid-search-time/README.md @@ -47,7 +47,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rag-weaviate/README.md b/templates/rag-weaviate/README.md index 9a385adaea..54e12b07ea 100644 --- a/templates/rag-weaviate/README.md +++ b/templates/rag-weaviate/README.md @@ -16,7 +16,7 @@ Also, ensure the following environment variables are set: To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/rewrite-retrieve-read/README.md b/templates/rewrite-retrieve-read/README.md index 7fc42628d5..259ae42c80 100644 --- a/templates/rewrite-retrieve-read/README.md +++ b/templates/rewrite-retrieve-read/README.md @@ -12,7 +12,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/self-query-supabase/README.md b/templates/self-query-supabase/README.md index 593f8e083b..cd20c7b118 100644 --- a/templates/self-query-supabase/README.md +++ b/templates/self-query-supabase/README.md @@ -75,7 +75,7 @@ Use these steps to setup your Supabase database if you haven't already. To use this package, install the LangChain CLI first: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` Create a new LangChain project and install this package as the only one: diff --git a/templates/solo-performance-prompting-agent/README.md b/templates/solo-performance-prompting-agent/README.md index a2b3e2801e..07cd900f80 100644 --- a/templates/solo-performance-prompting-agent/README.md +++ b/templates/solo-performance-prompting-agent/README.md @@ -15,7 +15,7 @@ Be sure that `OPENAI_API_KEY` is set in your environment. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/sql-llama2/README.md b/templates/sql-llama2/README.md index 856ed7feab..58f1770093 100644 --- a/templates/sql-llama2/README.md +++ b/templates/sql-llama2/README.md @@ -18,7 +18,7 @@ Ensure the `REPLICATE_API_TOKEN` is set in your environment. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/sql-llamacpp/README.md b/templates/sql-llamacpp/README.md index c3bac02c54..c3a4bd535e 100644 --- a/templates/sql-llamacpp/README.md +++ b/templates/sql-llamacpp/README.md @@ -22,7 +22,7 @@ CMAKE_ARGS="-DLLAMA_METAL=on" FORCE_CMAKE=1 pip install -U llama-cpp-python --no To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/sql-ollama/README.md b/templates/sql-ollama/README.md index c5deecf730..c385f972cf 100644 --- a/templates/sql-ollama/README.md +++ b/templates/sql-ollama/README.md @@ -22,7 +22,7 @@ Before using this template, you need to set up Ollama and SQL database. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/stepback-qa-prompting/README.md b/templates/stepback-qa-prompting/README.md index b89a06a99b..48513b8c6e 100644 --- a/templates/stepback-qa-prompting/README.md +++ b/templates/stepback-qa-prompting/README.md @@ -17,7 +17,7 @@ Set the `OPENAI_API_KEY` environment variable to access the OpenAI models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/summarize-anthropic/README.md b/templates/summarize-anthropic/README.md index 0e603e4879..83a7217513 100644 --- a/templates/summarize-anthropic/README.md +++ b/templates/summarize-anthropic/README.md @@ -16,7 +16,7 @@ Set the `ANTHROPIC_API_KEY` environment variable to access the Anthropic models. To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: diff --git a/templates/xml-agent/README.md b/templates/xml-agent/README.md index 6d513f3a55..0124e64f2f 100644 --- a/templates/xml-agent/README.md +++ b/templates/xml-agent/README.md @@ -14,7 +14,7 @@ Two environment variables need to be set: To use this package, you should first have the LangChain CLI installed: ```shell -pip install -U "langchain-cli[serve]" +pip install -U langchain-cli ``` To create a new LangChain project and install this as the only package, you can do: