Files
langchain/docs/docs/integrations/providers/robocorp.mdx
Rihards Gravis 6a48ea43ec docs: Update Robocorp Action Server installation instructions (#15943)
**Description:**

Remove section on how to install Action Server and direct the users t o
the instructions on Robocorp repository.

**Reason:**

Robocorp Action Server has moved from a pip installation to a standalone
cli application and is due for changes. Because of that, leaving only
LangChain integration relevant part in the documentation.
2024-01-12 09:46:18 -08:00

31 lines
775 B
Plaintext

# 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:
```bash
pip install langchain-robocorp
```
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
action-server new
cd ./your-project-name
action-server start
```
## Toolkit
See a [usage example](/docs/integrations/toolkits/robocorp).
```python
from langchain_robocorp import ActionServerToolkit
```