https://github.com/solidlabresearch/conversationaldataexchange
https://github.com/solidlabresearch/conversationaldataexchange
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/solidlabresearch/conversationaldataexchange
- Owner: SolidLabResearch
- Created: 2023-08-22T17:28:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-02T22:37:22.000Z (over 2 years ago)
- Last Synced: 2025-01-17T07:09:35.524Z (about 1 year ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Conversational Data Exchange
This is a WIP for work on Conversational Data Exchange (Dialogical Reasoning)
The current implementation can handle receiving a message, formulating a response and returning the response.
The communication mechanism to exchange the messages is very much still WIP
## Install
```
npm install
```
## Run
```
cd agent/
node agent.js -p -d ../server/data/ -r ../server/rules
```
This will start up the agent that can respond to questions
## Agent data
The service agent things are stored in `./server_agent/data/catalog.n3`
The goal of this demonstrator, is to show that we can enable dynamic dialog interaction
that allows the asking for age and depending on the availble information will show alcoholic beverages or not
## Setup experiment
### Start client agent
```
cd client_agent
node agent.js -p 2345 -c config.json
```
### start server agent
```
cd server_agent
node agent.js -p 3456 -c config.json
```
### run experiment
```
cd test
bash run.sh
```