diff --git a/libs/cli/langchain_cli/package_template/README.md b/libs/cli/langchain_cli/package_template/README.md index 6ac7f54b7ac3d..87daa656aa545 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 887af0f2b3885..241a5cebc4093 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 d3042ddebf796..4cd6b8df82fca 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 981df0712cb95..4a9481500271e 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 e4804be7a28db..cc117aed7c4af 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 f619890bbb925..2426100cf5130 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 e5f6075942a2d..03602ad6b9b98 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 932f235e639a4..3888df1d44ec9 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 8077f5d1e6eb2..4d08aea89d8e4 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 6e46b092e33ec..8e2ee269442a0 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 46e9b2e1903ba..0ff8b6afedaab 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 3ebcce7206a9f..8266d8e177878 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 3fca967cd2eb4..488b6a5e9c687 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 f01507249526f..fd2c9dd13f395 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 3fbfe0dca48be..8edfecb7f413c 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 6520ef87f1bc2..4d6303acf82ae 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 769434f3ad01d..203be7c786345 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 864e3796d80aa..980ad0a5cb86b 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 85de22c76d401..5707c009877e6 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 e985feb8a99b2..8f8f98865ca7d 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 756907cbdfd71..dd8ef2be570d4 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 e2122778a2a31..531bae48f1cc9 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 e703e9e628565..26c94638ed1d3 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 5d4f550393682..2dc1fc7f62c04 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 51abca62f9723..efd3f1f945992 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 1df5199b7bee3..a2a2004b0660f 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 5965a8f730787..f39aaeb2973ef 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 6f3c2cfbe70cc..b679f7a6cc5a4 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 353a62e6544ee..4c31fff358cd1 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 157e569b76483..f2103f28a86ca 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 ea91ab1edf937..bc5eb07549e6c 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 aae9c56e8ac02..83f83335fef92 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 392eb3c840fa8..89000d51beff4 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 92341f91e7cdc..ab0d1e4c1dd0e 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 0501e05346c53..821bd26471289 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 55227c166e26b..70d01721ad87c 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 4b9865becc7c1..b0c4260b33e5b 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 c2db4bb686f91..c22bded456069 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 55e268d5f955b..710525c51a6ad 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 ec699d7d78d31..4a0f664ec1453 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 899bb5c0342e6..44b8051d74e41 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 3bd1e2162b2b0..2702d31abb4d3 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 9a385adaea9ab..54e12b07eaf5f 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 7fc42628d52f0..259ae42c80c41 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 593f8e083b9f0..cd20c7b118b9f 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 a2b3e2801e849..07cd900f8081c 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 856ed7feab5b4..58f1770093475 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 c3bac02c540cb..c3a4bd535e000 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 c5deecf730b7f..c385f972cf31f 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 b89a06a99b1ea..48513b8c6e049 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 0e603e48798f6..83a721751309e 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 6d513f3a559b9..0124e64f2f144 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: