Skip to content

Commit

Permalink
Merge branch 'dev' into python_custom_node_component
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielluiz committed Aug 1, 2023
2 parents 70f8199 + 6d6cc46 commit d7a1375
Show file tree
Hide file tree
Showing 8 changed files with 156 additions and 408 deletions.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,24 @@
You can install Langflow from pip:

```shell
# This installs the package without dependencies for local models
pip install langflow
```

To use local models (e.g llama-cpp-python) run:

```shell
pip install langflow[local]
```

This will install the following dependencies:

- [CTransformers](https://github.com/marella/ctransformers)
- [llama-cpp-python](https://github.com/abetlen/llama-cpp-python)
- [sentence-transformers](https://github.com/UKPLab/sentence-transformers)

You can still use models from projects like LocalAI

Next, run:

```shell
Expand All @@ -74,7 +89,7 @@ You can also check it out on [HuggingFace Spaces](https://huggingface.co/spaces/

Langflow provides a command-line interface (CLI) for easy management and configuration.

### Usage
## Usage

You can run the Langflow using the following command:

Expand Down Expand Up @@ -127,6 +142,8 @@ Langflow integrates with langchain-serve to provide a one-command deployment to
Start by installing `langchain-serve` with

```bash
pip install langflow[deploy]
# or
pip install -U langchain-serve
```

Expand Down
Loading

0 comments on commit d7a1375

Please sign in to comment.