Skip to content

Commit

Permalink
das-199: Fix das documentation (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity authored Jan 30, 2025
1 parent 577404c commit 56b4022
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ DAS consists of several components. Below is a list of these components, categor
### **Internal Components**
The following components are included in this repository:

- **Attention Broker**
A DAS component that tracks atom importance values in different contexts and updates those values based on user queries using context-specific Hebbian networks.

Documentation: [Read more](src/cpp/attention_broker/README.md)

- **Query Agent**

C++ server which perform Pattern Matching queries.

Documentation: [Read more](src/cpp/query_engine/README.md)

- **Attention Broker**
A DAS component that tracks atom importance values in different contexts and updates those values based on user queries using context-specific Hebbian networks.

Documentation: [Read more](src/cpp/attention_broker/README.md)

- **Link Creation Agent**
A C++ server that performs pattern-matching queries and creates new links in the Atomspace based on the results.

Expand Down Expand Up @@ -92,7 +92,13 @@ To build the agents, run the command:
make build
```

This process will generate the binaries for all components in the `das/src/bin` directory. For detailed information about each component, please refer to the documentation provided for each component in the [**Components**](#components) section above.
This process will generate the binaries for all components in the `das/src/bin` directory.

### **3. Initializing the Knowledge Base**

Some of the components require an existing knowledge base and a properly configured environment with Redis and MongoDB. You can set up this environment using the `das-cli`. For detailed instructions, refer to the [das-toolbox documentation](https://github.com/singnet/das-toolbox).

> For detailed information about each component, please refer to the documentation provided for each component in the [**Components**](#components) section above.
## **Running the Unit Tests**

Expand Down
2 changes: 1 addition & 1 deletion src/cpp/attention_broker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This will generate the binaries for all components in the `das/src/bin` director
- To run the Attention Broker Service, simply execute the following command:

```bash
make attention-broker
make run-attention-broker
```
- The default port for the Attention Broker is `37007`.
- If successful, you should see a message like this:
Expand Down

0 comments on commit 56b4022

Please sign in to comment.