- add new agents to config.example.toml
- remove message sanitization from server side. It can be done on the client side if necessary
This commit is contained in:
parent
390125ba56
commit
1c1d86529b
2 changed files with 62 additions and 2 deletions
|
@ -18,6 +18,66 @@ wavExpirySeconds = 60
|
||||||
friendlyName = "Clippy"
|
friendlyName = "Clippy"
|
||||||
filename = "CLIPPIT.ACS"
|
filename = "CLIPPIT.ACS"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Courtney"
|
||||||
|
filename = "courtney.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Dot"
|
||||||
|
filename = "DOT.ACS"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Earl"
|
||||||
|
filename = "earl.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "F1"
|
||||||
|
filename = "F1.ACS"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Genie"
|
||||||
|
filename = "Genie.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "James"
|
||||||
|
filename = "James.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Links"
|
||||||
|
filename = "Links.ACS"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Merlin"
|
||||||
|
filename = "merlin.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Mother Nature"
|
||||||
|
filename = "Mother_NATURE.ACS"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Office Logo"
|
||||||
|
filename = "Office_Logo.ACS"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Peedy"
|
||||||
|
filename = "Peedy.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Question"
|
||||||
|
filename = "question_mark.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Robby"
|
||||||
|
filename = "Robby.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Rocky"
|
||||||
|
filename = "ROCKY.ACS"
|
||||||
|
|
||||||
[[agents]]
|
[[agents]]
|
||||||
friendlyName = "Rover"
|
friendlyName = "Rover"
|
||||||
filename = "rover.acs"
|
filename = "rover.acs"
|
||||||
|
|
||||||
|
[[agents]]
|
||||||
|
friendlyName = "Victor"
|
||||||
|
filename = "Victor.acs"
|
|
@ -65,7 +65,7 @@ export class MSAgentChatRoom {
|
||||||
op: MSAgentProtocolMessageType.Chat,
|
op: MSAgentProtocolMessageType.Chat,
|
||||||
data: {
|
data: {
|
||||||
username: client.username!,
|
username: client.username!,
|
||||||
message: htmlentities.encode(message)
|
message: message
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
if (this.tts !== null) {
|
if (this.tts !== null) {
|
||||||
|
|
Loading…
Reference in a new issue