- Install
coagent
(see Installation). - Start a NATS server (see Distributed).
Start the CoS server in one terminal:
python coagent/cos/app.py
Then run a Node.js agent in another terminal:
node examples/cos/cos.js
Finally, start a ping-pong client in the third terminal:
coagent server -H type:Ping
or start a stream-ping-pong client:
coagent stream_server -H type:Ping --chat
Start the CoS server in one terminal:
python coagent/cos/app.py
Then run a Python agent in another terminal:
python examples/cos/cos.py
Finally, start a ping-pong client in the third terminal:
coagent server -H type:Ping
or start a stream-ping-pong client:
coagent stream_server -H type:Ping --chat
Start the CoS server in one terminal:
python coagent/cos/app.py
Then build and run the Go agent:
cd examples/cos/goagent
go build
./goagent
Finally, start a ping-pong client in the third terminal:
coagent server -H type:Ping