From 805e25a4ca7b44d43026825d09e9686515f76c11 Mon Sep 17 00:00:00 2001 From: Bakar Tavadze Date: Wed, 1 May 2024 11:13:20 +0400 Subject: [PATCH] Rename action server tool's name and description. --- README.md | 4 ++-- backend/app/tools.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f1c3c875..a5b4beb8 100644 --- a/README.md +++ b/README.md @@ -391,9 +391,9 @@ this. If you want to use some preconfigured tools, these include: -**_Robocorp Action Server_** +**_Sema4.ai Action Server_** -Run AI Python based actions with [Robocorp Action Server](https://github.com/robocorp/robocorp). +Run AI Python based actions with [Sema4.ai Action Server](https://github.com/Sema4AI/actions). Does not require a service API key, but it requires the credentials for a running Action Server instance to be defined. These you set while creating an assistant. diff --git a/backend/app/tools.py b/backend/app/tools.py index 4e496efb..04261660 100644 --- a/backend/app/tools.py +++ b/backend/app/tools.py @@ -45,7 +45,7 @@ class DallEInput(BaseModel): class AvailableTools(str, Enum): - ACTION_SERVER = "action_server_by_robocorp" + ACTION_SERVER = "action_server_by_sema4ai" CONNERY = "ai_action_runner_by_connery" DDG_SEARCH = "ddg_search" TAVILY = "search_tavily" @@ -79,11 +79,11 @@ class ActionServerConfig(ToolConfig): class ActionServer(BaseTool): type: AvailableTools = Field(AvailableTools.ACTION_SERVER, const=True) - name: str = Field("Action Server by Robocorp", const=True) + name: str = Field("Action Server by Sema4.ai", const=True) description: str = Field( ( "Run AI actions with " - "[Robocorp Action Server](https://github.com/robocorp/robocorp)." + "[Sema4.ai Action Server](https://github.com/Sema4AI/actions)." ), const=True, )