Skip to content

Commit

Permalink
Rename action server tool's name and description.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakar-io committed May 3, 2024
1 parent 4b688f0 commit 805e25a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions backend/app/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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,
)
Expand Down

0 comments on commit 805e25a

Please sign in to comment.