Skip to content

Commit b9ac339

Browse files
committed
updated
2 parents af0ff46 + d62e0b0 commit b9ac339

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

docs/api/agent/findAgent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: findAgent
2+
name: FindAgent
33
cbbaseinfo:
44
description: Finds an agent suitable for the specified task.
55
cbparameters:

docs/api/agent/getAgentsDetail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: getAgentsDetail
2+
name: GetAgentsDetail
33
cbbaseinfo:
44
description: Retrieves detailed information for a list of specified agents.
55
cbparameters:

docs/api/agent/getAgentList.md renamed to docs/api/agent/getAgentsList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: getAgentsList
2+
name: GetAgentsList
33
cbbaseinfo:
44
description: Retrieves a list of agents based on the specified type.
55
cbparameters:

docs/api/agent/index.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
---
22
cbapicategory:
3-
- name: startAgent
3+
- name: StartAgent
44
link: /docs/api/agent/startAgent
55
description: Starts an agent for the specified task with a given agent ID .
6-
- name: findAgent
6+
- name: FindAgent
77
link: /docs/api/agent/findAgent
88
description: Finds agents for a specified task with filtering options by location, source and maximum results.
9-
- name: getAgentsList
9+
- name: GetAgentsList
1010
link: /docs/api/agent/getAgentsList
1111
description: Lists available agents of a specific type (downloaded, local, or all).
12-
- name: getAgentsDetail
12+
- name: GetAgentsDetail
1313
link: /docs/api/agent/getAgentsDetail
1414
description: Retrieves detailed information for a list of specified agents .
15+
- name: StartAgent
16+
link: /docs/api/agent/startAgent
17+
description: Starts an agent for the specified task with a given agent ID .
1518
---
1619
# Agent
1720
<CBAPICategory />

docs/api/agent/startAgent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: startAgent
2+
name: StartAgent
33
cbbaseinfo:
44
description: Starts an agent for the specified task.
55
cbparameters:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
7-
"start": "docusaurus start",
7+
"start": "docusaurus start --no-open",
88
"build": "docusaurus build",
99
"swizzle": "docusaurus swizzle",
1010
"deploy": "docusaurus deploy",

src/components/CBAPICategory.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import useFrontMatter from "./useFrontMatter";
66

77
const CBAPICategory = () => {
88
const frontMatter = useFrontMatter();
9-
console.log(frontMatter)
10-
console.log(Object.entries(frontMatter))
9+
// console.log(frontMatter)
10+
// console.log(Object.entries(frontMatter))
1111
return (
1212
<div>
1313
{Object.entries(frontMatter).map(([key, value]) => {

src/components/CBBaseInfo.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const CBBaseInfo = () => {
2727
<div>
2828
{Object.entries(frontMatter).map(([key, value]) => {
2929
if (key === "cbbaseinfo") {
30-
console.log(`Key: ${key}, Value: ${value}`);
30+
// console.log(`Key: ${key}, Value: ${value}`);
3131

3232
return (
3333
<div className="cbbaseinfo">

0 commit comments

Comments
 (0)