> ## Documentation Index
> Fetch the complete documentation index at: https://developer.watson-orchestrate.ibm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Importing Langflow tools

Once you're happy with your Langflow flow, share it to import it to watsonx Orchestrate.

<Note>
  **Note:**

  If your Langflow flow uses global variables, bind these variables to watsonx Orchestrate connections first. For more information, see [Binding global variables to connections](./binding_variables).
</Note>

To import a Langflow flow, run:

```bash BASH theme={null}
orchestrate tools import -k langflow -f <json-file-path> -a <app-id> -<requirements-file-path>
```

<Expandable title="command flags">
  | Flag                         | Type   | Required | Description                                                                                                                                                                                                    |
  | ---------------------------- | ------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `--kind` / `-k`              | string | Yes      | The kind of tool to import, this is always `langflow` for Langflow based tools.                                                                                                                                |
  | `--file` / `-f`              | string | Yes      | The path to the file of the shared JSON you want to import (or a URL containing the file).                                                                                                                     |
  | `--app-id` / `-a`            | string | No       | The application ID of a [connection](/connections/overview) related to your Langflow flow. Use connections to authenticate or configure global variables. You can include multiple `--app-id` flags if needed. |
  | `--requirements-file` / `-r` | string | No       | The path to a `requirements.txt` file that lists all Python packages needed to run the Langflow flow.                                                                                                          |
</Expandable>
