Skip to content

Commit d209845

Browse files
authored
Rename action server tool's name and description. (#329)
1 parent 4b688f0 commit d209845

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -391,9 +391,9 @@ this.
391391

392392
If you want to use some preconfigured tools, these include:
393393

394-
**_Robocorp Action Server_**
394+
**_Sema4.ai Action Server_**
395395

396-
Run AI Python based actions with [Robocorp Action Server](https://github.com/robocorp/robocorp).
396+
Run AI Python based actions with [Sema4.ai Action Server](https://github.com/Sema4AI/actions).
397397
Does not require a service API key, but it requires the credentials for a running Action Server instance to be defined.
398398
These you set while creating an assistant.
399399

backend/app/tools.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class DallEInput(BaseModel):
4545

4646

4747
class AvailableTools(str, Enum):
48-
ACTION_SERVER = "action_server_by_robocorp"
48+
ACTION_SERVER = "action_server_by_sema4ai"
4949
CONNERY = "ai_action_runner_by_connery"
5050
DDG_SEARCH = "ddg_search"
5151
TAVILY = "search_tavily"
@@ -79,11 +79,11 @@ class ActionServerConfig(ToolConfig):
7979

8080
class ActionServer(BaseTool):
8181
type: AvailableTools = Field(AvailableTools.ACTION_SERVER, const=True)
82-
name: str = Field("Action Server by Robocorp", const=True)
82+
name: str = Field("Action Server by Sema4.ai", const=True)
8383
description: str = Field(
8484
(
8585
"Run AI actions with "
86-
"[Robocorp Action Server](https://github.com/robocorp/robocorp)."
86+
"[Sema4.ai Action Server](https://github.com/Sema4AI/actions)."
8787
),
8888
const=True,
8989
)

0 commit comments

Comments
 (0)