Skip to content

Commit f60445a

Browse files
committed
fix vocab
1 parent 36ca63b commit f60445a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
"args": [
4343
"${__dirname}/dist/stdio.js",
4444
"--tools",
45-
"${user_config.enabled_tools}",
45+
"${user_config.tools}",
4646
"--actors",
47-
"${user_config.enabled_actors}",
47+
"${user_config.actors}",
4848
"--enable-adding-actors",
49-
"${user_config.enable_dynamic_actors}"
49+
"${user_config.enable-adding-actors}"
5050
],
5151
"env": {
5252
"APIFY_TOKEN": "${user_config.apify_token}"
@@ -62,21 +62,21 @@
6262
"sensitive": true,
6363
"required": true
6464
},
65-
"enabled_tools": {
65+
"tools": {
6666
"type": "string",
6767
"title": "Enabled Tool Categories",
6868
"description": "A comma-separated list of tool categories to enable. Available options: docs, runs, storage, preview.",
6969
"required": false,
7070
"default": "docs"
7171
},
72-
"enabled_actors": {
72+
"actors": {
7373
"type": "string",
7474
"title": "Enabled Actors",
7575
"description": "A comma-separated list of full Actor names to add to the server on startup (e.g., apify/rag-web-browser).",
7676
"required": false,
7777
"default": "apify/rag-web-browser"
7878
},
79-
"enable_dynamic_actors": {
79+
"enable-adding-actors": {
8080
"type": "boolean",
8181
"title": "Enable Dynamic Actor Adding",
8282
"description": "Allow dynamically adding Actors as tools based on user requests during a session.",

0 commit comments

Comments
 (0)