Skip to content

Commit 7ba9030

Browse files
committed
link url change
1 parent f2c9bbb commit 7ba9030

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+135
-135
lines changed

Diff for: docs/api/api_index.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -4,64 +4,64 @@ cbapicategory:
44
link: /docs/api/browser
55
description: The browser module provides functions for interacting with the browser.
66
- name: Cbstate
7-
link: cbstate
7+
link: /docs/api/cbstate
88
description: This is a state module that gives the current state. The state is being continuously updated by the application based on various actions.
99
- name: Chat
10-
link: chat
10+
link: /docs/api/chat
1111
description: This has various chat related functionalities where the agent can send chat to user and get the user response
1212
- name: CodeParsers
13-
link: codeparsers
13+
link: /docs/api/codeparsers
1414
description: This is a module that parses the code and returns the code tree.
1515
- name: CodeUtils
16-
link: codeutils
16+
link: /docs/api/codeutils
1717
description: This is a module that provides various utilities for parsing and manipulating code.
1818
- name: Crawler
19-
link: crawler
19+
link: /docs/api/crawler
2020
description: This is a module that crawls the web and returns the crawled data.
2121
- name: DbMemory
22-
link: dbmemory
22+
link: /docs/api/dbmemory
2323
description: This is a module that provides memory based database functionalities.
2424
- name: Debug
25-
link: debug
25+
link: /docs/api/debug
2626
description: This is a module that provides various debug functionalities.
2727
- name: DocUtils
28-
link: docutils
28+
link: /docs/api/docutils
2929
description: This is a module that provides various utilities for parsing and manipulating markdown.
3030
- name: Fs
31-
link: fs
31+
link: /docs/api/fs
3232
description: This is a module that provides various file system functionalities.
3333
- name: Git
34-
link: git
34+
link: /docs/api/git
3535
description: This is a module that provides various git functionalities.
3636
- name: Knowledge
37-
link: knowledge
37+
link: /docs/api/knowledge
3838
description: This is a module that provides various knowledge related functionalities.
3939
- name: LLM
40-
link: llm
40+
link: /docs/api/llm
4141
description: This is a module that provides various LLM related functionalities.
4242
- name: OutputParsers
43-
link: outputparsers
43+
link: /docs/api/outputparsers
4444
description: This is a module that parses the output and returns the output tree.
4545
- name: Project
46-
link: project
46+
link: /docs/api/project
4747
description: This is a module that provides various project related functionalities.
4848
- name: Rag
49-
link: rag
49+
link: /docs/api/rag
5050
description: This is a module that provides various RAG related functionalities.
5151
- name: Search
52-
link: search
52+
link: /docs/api/search
5353
description: This is a module that provides various search related functionalities.
5454
- name: TaskPlanner
55-
link: taskplaner
55+
link: /docs/api/taskplaner
5656
description: This is a module that provides various task planner related functionalities.
5757
- name: Terminal
58-
link: terminal
58+
link: /docs/api/terminal
5959
description: Handle Terminal Related Functionalities like Running Commands and Getting Output. Supports handling multiple terminals and long running code executions like Servers.
6060
- name: Tokenizer
61-
link: tokenizer
61+
link: /docs/api/tokenizer
6262
description: Tokenization related Functionalities are provided so that the code can be tokenized and the tokens can be used to perform and measure various operations.
6363
- name: VectorDB
64-
link: vectordb
64+
link: /docs/api/vectordb
6565
description: Provides Vector DB related Functionalities for Storing and Managing of Vector Embedding
6666

6767
---

Diff for: docs/api/browser/index.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
11
---
22
cbapicategory:
33
- name: click
4-
link: browser/click
4+
link: /docs/api/browser/click
55
description: Clicks on a specified element on the page.
66
- name: close
7-
link: browser/close
7+
link: /docs/api/browser/close
88
description: Closes the current page.
99
- name: enter
10-
link: browser/enter
10+
link: /docs/api/browser/enter
1111
description: Simulates the Enter key press on the current page.
1212
- name: extractText
13-
link: browser/extractText
13+
link: /docs/api/browser/extractText
1414
description: Extracts text from the current page.
1515
- name: getContent
16-
link: browser/getContent
16+
link: /docs/api/browser/getContent
1717
description: Retrieves the content of the current page.
1818
- name: getHTML
19-
link: browser/getHTML
19+
link: /docs/api/browser/getHTML
2020
description: Retrieves the HTML content of the current page.
2121
- name: getMarkdown
22-
link: browser/getMarkdown
22+
link: /docs/api/browser/getMarkdown
2323
description: Retrieves the Markdown content of the current page.
2424
- name: getPDF
25-
link: browser/getPDF
25+
link: /docs/api/browser/getPDF
2626
description: Retrieves the PDF content of the current page.
2727
- name: getUrl
28-
link: browser/getUrl
28+
link: /docs/api/browser/getUrl
2929
description: Retrieves the current URL of the browser's active page.
3030
- name: goToPage
31-
link: browser/goToPage
31+
link: /docs/api/browser/goToPage
3232
description: Navigates to a specified URL.
3333
- name: newPage
34-
link: browser/newPage
34+
link: /docs/api/browser/newPage
3535
description: Opens a new page in the browser.
3636
- name: pdfToText
37-
link: browser/pdfToText
37+
link: /docs/api/browser/pdfToText
3838
description: Converts the PDF content of the current page to text.
3939
- name: screenshot
40-
link: browser/screenshot
40+
link: /docs/api/browser/screenshot
4141
description: Takes a screenshot of the current page.
4242
- name: scroll
43-
link: browser/scroll
43+
link: /docs/api/browser/scroll
4444
description: >-
4545
Scrolls the current page in a specified direction by a specified number of
4646
pixels.
4747
- name: search
48-
link: browser/search
48+
link: /docs/api/browser/search
4949
description: Performs a search on the current page using a specified query.
5050
- name: type
51-
link: browser/type
51+
link: /docs/api/browser/type
5252
description: Types text into a specified element on the page.
5353

5454
---

Diff for: docs/api/cbstate/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "index"
9+
"id": "api/cbstate/index"
1010
}
1111
}

Diff for: docs/api/cbstate/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
cbapicategory:
33
- name: addToAgentState
4-
link: cbstate/addToAgentState
4+
link: /docs/api/cbstate/addToAgentState
55
description: Adds a key-value pair to the agent's state on the server via WebSocket.
66
- name: getAgentState
7-
link: cbstate/getAgentState
7+
link: /docs/api/cbstate/getAgentState
88
description: Retrieves the current state of the agent from the server via WebSocket.
99
- name: getApplicationState
10-
link: cbstate/getApplicationState
10+
link: /docs/api/cbstate/getApplicationState
1111
description: Retrieves the current application state from the server via WebSocket.
1212

1313
---

Diff for: docs/api/chat/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "index"
9+
"id": "api/chat/index"
1010
}
1111
}

Diff for: docs/api/chat/index.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
---
22
cbapicategory:
33
- name: eventEmitter
4-
link: chat/eventEmitter
4+
link: /docs/api/chat/eventEmitter
55
description: ' '
66
- name: getChatHistory
7-
link: chat/getChatHistory
7+
link: /docs/api/chat/getChatHistory
88
description: Retrieves the chat history from the server.
99
- name: processStarted
10-
link: chat/processStarted
10+
link: /docs/api/chat/processStarted
1111
description: >-
1212
Notifies the server that a process has started and sets up an event
1313
listener for stopProcessClicked events.
1414
- name: sendMessage
15-
link: chat/sendMessage
15+
link: /docs/api/chat/sendMessage
1616
description: Sends a message through the WebSocket connection.
1717
- name: stopProcess
18-
link: chat/stopProcess
18+
link: /docs/api/chat/stopProcess
1919
description: |-
2020
Stops the ongoing process.
2121
Sends a specific message to the server to stop the process.
2222
- name: userMessageListener
23-
link: chat/userMessageListener
23+
link: /docs/api/chat/userMessageListener
2424
description: >-
2525
Sets up a listener for incoming WebSocket messages and emits a custom
2626
event when a message is received.
2727
- name: waitforReply
28-
link: chat/waitforReply
28+
link: /docs/api/chat/waitforReply
2929
description: Waits for a reply to a sent message.
3030

3131
---

Diff for: docs/api/codeparsers/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "index"
9+
"id": "api/codeparsers/index"
1010
}
1111
}

Diff for: docs/api/codeparsers/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
cbapicategory:
33
- name: getAstTreeInFile
4-
link: codeparsers/getAstTreeInFile
4+
link: /docs/api/codeparsers/getAstTreeInFile
55
description: Generates an Abstract Syntax Tree (AST) for a given file.
66
- name: getClassesInFile
7-
link: codeparsers/getClassesInFile
7+
link: /docs/api/codeparsers/getClassesInFile
88
description: Retrieves the classes in a given file.
99
- name: getFunctionsinClass
10-
link: codeparsers/getFunctionsinClass
10+
link: /docs/api/codeparsers/getFunctionsinClass
1111
description: Retrieves the functions in a given class within a file.
1212

1313
---

Diff for: docs/api/codeutils/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "index"
9+
"id": "api/codeutils/index"
1010
}
1111
}

Diff for: docs/api/codeutils/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
cbapicategory:
33
- name: getAllFilesAsMarkDown
4-
link: codeutils/getAllFilesAsMarkDown
4+
link: /docs/api/codeutils/getAllFilesAsMarkDown
55
description: Retrieves all files as Markdown.
66
- name: getJsTree
7-
link: codeutils/getJsTree
7+
link: /docs/api/codeutils/getJsTree
88
description: Retrieves a JavaScript tree structure for a given file path.
99
- name: getMatcherList
10-
link: codeutils/getMatcherList
10+
link: /docs/api/codeutils/getMatcherList
1111
description: Retrieves the list of matchers.
1212
- name: matchDetail
13-
link: codeutils/matchDetail
13+
link: /docs/api/codeutils/matchDetail
1414
description: Retrieves details of a match.
1515
- name: performMatch
16-
link: codeutils/performMatch
16+
link: /docs/api/codeutils/performMatch
1717
description: >-
1818
Performs a matching operation based on the provided matcher definition and
1919
problem patterns.

Diff for: docs/api/crawler/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "index"
9+
"id": "api/crawler/index"
1010
}
1111
}

Diff for: docs/api/crawler/index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
22
cbapicategory:
33
- name: click
4-
link: crawler/click
4+
link: /docs/api/crawler/click
55
description: Simulates a click event on an element with the specified ID.
66
- name: crawl
7-
link: crawler/crawl
7+
link: /docs/api/crawler/crawl
88
description: Initiates a crawl process.
99
- name: enter
10-
link: crawler/enter
11-
description: Simulates the Enter key press using the crawler.
10+
link: /docs/api/crawler/enter
11+
description: Simulates the Enter key press using the /docs/api/crawler.
1212
- name: goToPage
13-
link: crawler/goToPage
13+
link: /docs/api/crawler/goToPage
1414
description: Directs the crawler to navigate to a specified URL.
1515
- name: screenshot
16-
link: crawler/screenshot
16+
link: /docs/api/crawler/screenshot
1717
description: Takes a screenshot using the crawler.
1818
- name: scroll
19-
link: crawler/scroll
19+
link: /docs/api/crawler/scroll
2020
description: Scrolls the crawler in a specified direction.
2121
- name: start
22-
link: crawler/start
22+
link: /docs/api/crawler/start
2323
description: Starts the crawler.
2424
- name: type
25-
link: crawler/type
25+
link: /docs/api/crawler/type
2626
description: Types the provided text into an element with the specified ID.
2727

2828
---

Diff for: docs/api/dbmemory/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "cb_index"
9+
"id": "api/dbmemory/index"
1010
}
1111
}

Diff for: docs/api/dbmemory/cb_index.md renamed to docs/api/dbmemory/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
cbapicategory:
33
- name: addKnowledge
4-
link: addKnowledge
4+
link: /docs/api/dbmemory/addKnowledge
55
description: Adds a key-value pair to the in-memory database.
66
- name: getKnowledge
7-
link: getKnowledge
7+
link: /docs/api/dbmemory/getKnowledge
88
description: Retrieves a value from the in-memory database by key.
99

1010
---

Diff for: docs/api/debug/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "cb_index"
9+
"id": "api/debug/index"
1010
}
1111
}

Diff for: docs/api/debug/cb_index.md renamed to docs/api/debug/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
cbapicategory:
33
- name: debug
4-
link: debug
4+
link: /docs/api/debug/debug
55
description: Sends a log message to the debug websocket and waits for a response.
66
- name: openDebugBrowser
7-
link: openDebugBrowser
7+
link: /docs/api/debug/openDebugBrowser
88
description: Requests to open a debug browser at the specified URL and port.
99

1010
---

Diff for: docs/api/docutils/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"className": "red",
77
"link": {
88
"type": "doc",
9-
"id": "cb_index"
9+
"id": "api/docutils/index"
1010
}
1111
}

Diff for: docs/api/docutils/cb_index.md renamed to docs/api/docutils/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
cbapicategory:
33
- name: pdf_to_text
4-
link: pdf_to_text
4+
link: /docs/api/docutils/pdf_to_text
55
description: Converts a PDF document to text.
66

77
---

0 commit comments

Comments
 (0)