Skip to content

Commit

Permalink
docs: Update Robocorp Action Server installation instructions (#15943)
Browse files Browse the repository at this point in the history
**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.
  • Loading branch information
rihardsgravis authored Jan 12, 2024
1 parent 6a2889a commit 6a48ea4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 23 deletions.
8 changes: 5 additions & 3 deletions docs/docs/integrations/providers/robocorp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@

## Installation and Setup

You need to install `langchain-robocorp` python package, as well as the `robocorp-action-server` package to run the action server locally.
You need to install `langchain-robocorp` python package:

```bash
pip install langchain-robocorp robocorp-action-server
pip install langchain-robocorp
```

You will need a running instance of Action Server to communicate with from your agent application. You can bootstrap a new project using Action Server `new` command.
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
Expand Down
28 changes: 8 additions & 20 deletions docs/docs/integrations/toolkits/robocorp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@
"source": [
"# Robocorp\n",
"\n",
"This notebook covers how to get started with [Robocorp Action Server](https://github.com/robocorp/robo/tree/master/action_server/docs) action toolkit and LangChain.\n",
"This notebook covers how to get started with [Robocorp Action Server](https://github.com/robocorp/robocorp) action toolkit and LangChain.\n",
"\n",
"## Installation"
"## Installation\n",
"\n",
"First, see the [Robocorp Quickstart](https://github.com/robocorp/robocorp#quickstart) on how to setup Action Server and create your Actions.\n",
"\n",
"In your LangChain application, install the `langchain-robocorp` package: "
]
},
{
Expand All @@ -19,24 +23,8 @@
"metadata": {},
"outputs": [],
"source": [
"# Install package and Action Server\n",
"%pip install --upgrade --quiet langchain-robocorp robocorp-action-server"
]
},
{
"cell_type": "markdown",
"id": "8e2ca5c5",
"metadata": {},
"source": [
"## Action Server setup\n",
"\n",
"You will need a running instance of Action Server to communicate with from your agent application. You can bootstrap a new project using Action Server `new` command.\n",
"\n",
"```bash\n",
"!action-server new\n",
"cd ./your-project-name\n",
"action-server start\n",
"```\n"
"# Install package\n",
"%pip install --upgrade --quiet langchain-robocorp"
]
},
{
Expand Down

0 comments on commit 6a48ea4

Please sign in to comment.