Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#199] hotfixes #231

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,14 @@ tests: build-image
cd src && bash -x scripts/unit_tests.sh

run-query-agent:
cd src && bash -x scripts/run.sh query_broker
@bash -x src/scripts/run.sh query_broker 31700

run-attention-broker:
cd src && bash -x scripts/run.sh attention_broker_service 37007
@bash -x src/scripts/run.sh attention_broker_service 37007

run-link-creation-agent:
@bash -x src/scripts/run.sh link_creation_server $(OPTIONS)

run-link-creation-client:
@bash -x src/scripts/run.sh link_creation_agent_client $(OPTIONS)

2 changes: 1 addition & 1 deletion src/cpp/link_creation_agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ requests_buffer_file = ./buffer
#### Running client

```
make run_client OPTIONS="localhost:1010 localhost:9080 LINK_TEMPLATE Expression 3 NODE Symbol Similarity VARIABLE V1 VARIABLE V2 LINK_CREATE Similarity 2 1 VARIABLE V1 VARIABLE V2 CUSTOM_FIELD truth_value 2 CUSTOM_FIELD mean 2 count 10 avg 0.9 confidence 0.9 10 0 test false"
make run-link-creation-client OPTIONS="localhost:1010 localhost:9080 LINK_TEMPLATE Expression 3 NODE Symbol Similarity VARIABLE V1 VARIABLE V2 LINK_CREATE Similarity 2 1 VARIABLE V1 VARIABLE V2 CUSTOM_FIELD truth_value 2 CUSTOM_FIELD mean 2 count 10 avg 0.9 confidence 0.9 10 0 test false"
```

If successful, you should see a message like this:
Expand Down