Skip to content

Commit

Permalink
ovos rebase + handshake + session support (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Jun 15, 2023
1 parent 9725368 commit b094e64
Show file tree
Hide file tree
Showing 9 changed files with 625 additions and 146 deletions.
70 changes: 70 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,73 @@ sleep(50)

bus.close()
```

## Cli Usage

```bash
$ hivemind-client --help
Usage: hivemind-client [OPTIONS] COMMAND [ARGS]...

Options:
--help Show this message and exit.

Commands:
escalate escalate a single mycroft message
propagate propagate a single mycroft message
send-mycroft send a single mycroft message
terminal simple cli interface to inject utterances and print speech

$ hivemind-client terminal --help
Usage: hivemind-client terminal [OPTIONS]

simple cli interface to inject utterances and print speech

Options:
--key TEXT HiveMind access key
--host TEXT HiveMind host
--port INTEGER HiveMind port number
--help Show this message and exit.


$ hivemind-client send-mycroft --help
Usage: hivemind-client send-mycroft [OPTIONS]

send a single mycroft message

Options:
--key TEXT HiveMind access key
--host TEXT HiveMind host
--port INTEGER HiveMind port number
--msg TEXT ovos message type to inject
--payload TEXT ovos message json payload
--help Show this message and exit.


$ hivemind-client escalate --help
Usage: hivemind-client escalate [OPTIONS]

escalate a single mycroft message

Options:
--key TEXT HiveMind access key
--host TEXT HiveMind host
--port INTEGER HiveMind port number
--msg TEXT ovos message type to inject
--payload TEXT ovos message json payload
--help Show this message and exit.


$ hivemind-client propagate --help
Usage: hivemind-client propagate [OPTIONS]

propagate a single mycroft message

Options:
--key TEXT HiveMind access key
--host TEXT HiveMind host
--port INTEGER HiveMind port number
--msg TEXT ovos message type to inject
--payload TEXT ovos message json payload
--help Show this message and exit.

```
Loading

0 comments on commit b094e64

Please sign in to comment.