> ## Documentation Index
> Fetch the complete documentation index at: https://langchain.idochub.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Sema4 (fka Robocorp)

> [Robocorp](https://robocorp.com/) helps build and operate Python workers that run seamlessly anywhere at any scale

## Installation and Setup

You need to install `langchain-robocorp` python package:

<CodeGroup>
  ```bash pip theme={null}
  pip install langchain-robocorp
  ```

  ```bash uv theme={null}
  uv add langchain-robocorp
  ```
</CodeGroup>

You will need a running instance of `Action Server` to communicate with from your agent application.
See the [Robocorp Quickstart](https://github.com/robocorp/robocorp#quickstart) on how to setup Action Server and create your Actions.

You can bootstrap a new project using Action Server `new` command.

```bash theme={null}
action-server new
cd ./your-project-name
action-server start
```

## Tool

```python theme={null}
from langchain_robocorp.toolkits import ActionServerRequestTool
```

## Toolkit

See a [usage example](/oss/python/integrations/tools/robocorp).

```python theme={null}
from langchain_robocorp import ActionServerToolkit
```
