Skip to content

Commit f2c9bbb

Browse files
committed
updated path
1 parent d591578 commit f2c9bbb

18 files changed

+75
-87
lines changed

docs/api/api_index.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
---
22
cbapicategory:
33
- name: Browser
4-
link: browser/cb_index
4+
link: /docs/api/browser
55
description: The browser module provides functions for interacting with the browser.
66
- name: Cbstate
7-
link: cbstate/cb_index
7+
link: 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/cb_index
10+
link: 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/cb_index
13+
link: codeparsers
1414
description: This is a module that parses the code and returns the code tree.
1515
- name: CodeUtils
16-
link: codeutils/cb_index
16+
link: codeutils
1717
description: This is a module that provides various utilities for parsing and manipulating code.
1818
- name: Crawler
19-
link: crawler/cb_index
19+
link: crawler
2020
description: This is a module that crawls the web and returns the crawled data.
2121
- name: DbMemory
22-
link: dbmemory/cb_index
22+
link: dbmemory
2323
description: This is a module that provides memory based database functionalities.
2424
- name: Debug
25-
link: debug/cb_index
25+
link: debug
2626
description: This is a module that provides various debug functionalities.
2727
- name: DocUtils
28-
link: docutils/cb_index
28+
link: docutils
2929
description: This is a module that provides various utilities for parsing and manipulating markdown.
3030
- name: Fs
31-
link: fs/cb_index
31+
link: fs
3232
description: This is a module that provides various file system functionalities.
3333
- name: Git
34-
link: git/cb_index
34+
link: git
3535
description: This is a module that provides various git functionalities.
3636
- name: Knowledge
37-
link: knowledge/cb_index
37+
link: knowledge
3838
description: This is a module that provides various knowledge related functionalities.
3939
- name: LLM
40-
link: llm/cb_index
40+
link: llm
4141
description: This is a module that provides various LLM related functionalities.
4242
- name: OutputParsers
43-
link: outputparsers/cb_index
43+
link: outputparsers
4444
description: This is a module that parses the output and returns the output tree.
4545
- name: Project
46-
link: project/cb_index
46+
link: project
4747
description: This is a module that provides various project related functionalities.
4848
- name: Rag
49-
link: rag/cb_index
49+
link: rag
5050
description: This is a module that provides various RAG related functionalities.
5151
- name: Search
52-
link: search/cb_index
52+
link: search
5353
description: This is a module that provides various search related functionalities.
5454
- name: TaskPlanner
55-
link: taskplaner/cb_index
55+
link: taskplaner
5656
description: This is a module that provides various task planner related functionalities.
5757
- name: Terminal
58-
link: terminal/cb_index
58+
link: 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/cb_index
61+
link: 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/cb_index
64+
link: vectordb
6565
description: Provides Vector DB related Functionalities for Storing and Managing of Vector Embedding
6666

6767
---

docs/api/browser/_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/browser/index"
1010
}
1111
}

docs/api/browser/cb_index.md renamed to 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: click
4+
link: browser/click
55
description: Clicks on a specified element on the page.
66
- name: close
7-
link: close
7+
link: browser/close
88
description: Closes the current page.
99
- name: enter
10-
link: enter
10+
link: browser/enter
1111
description: Simulates the Enter key press on the current page.
1212
- name: extractText
13-
link: extractText
13+
link: browser/extractText
1414
description: Extracts text from the current page.
1515
- name: getContent
16-
link: getContent
16+
link: browser/getContent
1717
description: Retrieves the content of the current page.
1818
- name: getHTML
19-
link: getHTML
19+
link: browser/getHTML
2020
description: Retrieves the HTML content of the current page.
2121
- name: getMarkdown
22-
link: getMarkdown
22+
link: browser/getMarkdown
2323
description: Retrieves the Markdown content of the current page.
2424
- name: getPDF
25-
link: getPDF
25+
link: browser/getPDF
2626
description: Retrieves the PDF content of the current page.
2727
- name: getUrl
28-
link: getUrl
28+
link: browser/getUrl
2929
description: Retrieves the current URL of the browser's active page.
3030
- name: goToPage
31-
link: goToPage
31+
link: browser/goToPage
3232
description: Navigates to a specified URL.
3333
- name: newPage
34-
link: newPage
34+
link: browser/newPage
3535
description: Opens a new page in the browser.
3636
- name: pdfToText
37-
link: pdfToText
37+
link: browser/pdfToText
3838
description: Converts the PDF content of the current page to text.
3939
- name: screenshot
40-
link: screenshot
40+
link: browser/screenshot
4141
description: Takes a screenshot of the current page.
4242
- name: scroll
43-
link: scroll
43+
link: 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: search
48+
link: browser/search
4949
description: Performs a search on the current page using a specified query.
5050
- name: type
51-
link: type
51+
link: browser/type
5252
description: Types text into a specified element on the page.
5353

5454
---

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": "cb_index"
9+
"id": "index"
1010
}
1111
}

docs/api/cbstate/cb_index.md renamed to 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: addToAgentState
4+
link: cbstate/addToAgentState
55
description: Adds a key-value pair to the agent's state on the server via WebSocket.
66
- name: getAgentState
7-
link: getAgentState
7+
link: cbstate/getAgentState
88
description: Retrieves the current state of the agent from the server via WebSocket.
99
- name: getApplicationState
10-
link: getApplicationState
10+
link: cbstate/getApplicationState
1111
description: Retrieves the current application state from the server via WebSocket.
1212

1313
---

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": "cb_index"
9+
"id": "index"
1010
}
1111
}

docs/api/chat/cb_index.md renamed to 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: eventEmitter
4+
link: chat/eventEmitter
55
description: ' '
66
- name: getChatHistory
7-
link: getChatHistory
7+
link: chat/getChatHistory
88
description: Retrieves the chat history from the server.
99
- name: processStarted
10-
link: processStarted
10+
link: 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: sendMessage
15+
link: chat/sendMessage
1616
description: Sends a message through the WebSocket connection.
1717
- name: stopProcess
18-
link: stopProcess
18+
link: 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: userMessageListener
23+
link: 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: waitforReply
28+
link: chat/waitforReply
2929
description: Waits for a reply to a sent message.
3030

3131
---

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": "cb_index"
9+
"id": "index"
1010
}
1111
}

docs/api/codeparsers/cb_index.md renamed to 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: getAstTreeInFile
4+
link: codeparsers/getAstTreeInFile
55
description: Generates an Abstract Syntax Tree (AST) for a given file.
66
- name: getClassesInFile
7-
link: getClassesInFile
7+
link: codeparsers/getClassesInFile
88
description: Retrieves the classes in a given file.
99
- name: getFunctionsinClass
10-
link: getFunctionsinClass
10+
link: codeparsers/getFunctionsinClass
1111
description: Retrieves the functions in a given class within a file.
1212

1313
---

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": "cb_index"
9+
"id": "index"
1010
}
1111
}

docs/api/codeutils/cb_index.md renamed to 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: getAllFilesAsMarkDown
4+
link: codeutils/getAllFilesAsMarkDown
55
description: Retrieves all files as Markdown.
66
- name: getJsTree
7-
link: getJsTree
7+
link: codeutils/getJsTree
88
description: Retrieves a JavaScript tree structure for a given file path.
99
- name: getMatcherList
10-
link: getMatcherList
10+
link: codeutils/getMatcherList
1111
description: Retrieves the list of matchers.
1212
- name: matchDetail
13-
link: matchDetail
13+
link: codeutils/matchDetail
1414
description: Retrieves details of a match.
1515
- name: performMatch
16-
link: performMatch
16+
link: codeutils/performMatch
1717
description: >-
1818
Performs a matching operation based on the provided matcher definition and
1919
problem patterns.

docs/api/constructor/_category_.json

-11
This file was deleted.

docs/api/constructor/cb_index.md

-6
This file was deleted.

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": "cb_index"
9+
"id": "index"
1010
}
1111
}

docs/api/crawler/cb_index.md renamed to docs/api/crawler/index.md

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

2828
---

docs/api/tokenizer/_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": "index"
1010
}
1111
}
File renamed without changes.

yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -4155,6 +4155,11 @@ fs.realpath@^1.0.0:
41554155
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
41564156
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
41574157

4158+
fsevents@~2.3.2:
4159+
version "2.3.3"
4160+
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
4161+
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
4162+
41584163
function-bind@^1.1.2:
41594164
version "1.1.2"
41604165
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz"

0 commit comments

Comments
 (0)