File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -391,9 +391,9 @@ this.
391
391
392
392
If you want to use some preconfigured tools, these include:
393
393
394
- ** _ Robocorp Action Server_ **
394
+ ** _ Sema4.ai Action Server_ **
395
395
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 ) .
397
397
Does not require a service API key, but it requires the credentials for a running Action Server instance to be defined.
398
398
These you set while creating an assistant.
399
399
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class DallEInput(BaseModel):
45
45
46
46
47
47
class AvailableTools (str , Enum ):
48
- ACTION_SERVER = "action_server_by_robocorp "
48
+ ACTION_SERVER = "action_server_by_sema4ai "
49
49
CONNERY = "ai_action_runner_by_connery"
50
50
DDG_SEARCH = "ddg_search"
51
51
TAVILY = "search_tavily"
@@ -79,11 +79,11 @@ class ActionServerConfig(ToolConfig):
79
79
80
80
class ActionServer (BaseTool ):
81
81
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 )
83
83
description : str = Field (
84
84
(
85
85
"Run AI actions with "
86
- "[Robocorp Action Server](https://github.com/robocorp/robocorp )."
86
+ "[Sema4.ai Action Server](https://github.com/Sema4AI/actions )."
87
87
),
88
88
const = True ,
89
89
)
You can’t perform that action at this time.
0 commit comments