Skip to content

Commit

Permalink
Merge pull request #47 from JoinTheAlliance/0.0.28
Browse files Browse the repository at this point in the history
ensure all examples have an action
  • Loading branch information
lalalune authored Mar 5, 2024
2 parents b40590a + 4cc77d8 commit 43ca730
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
33 changes: 24 additions & 9 deletions src/lib/actions/ignore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ export default {
],

[
{ user: "{{user1}}", content: { content: "Got any investment advice?" } },
{
user: "{{user1}}",
content: { content: "Got any investment advice?", action: "WAIT" },
},
{
user: "{{user2}}",
content: {
Expand All @@ -56,16 +59,19 @@ export default {
action: "WAIT",
},
},
{ user: "{{user1}}", content: { content: "Wise words, thanks." } },
{
user: "{{user1}}",
content: { content: "I gotta run, talk to you later." },
content: { content: "Wise words, thanks.", action: "WAIT" },
},
{
user: "{{user1}}",
content: { content: "I gotta run, talk to you later.", action: "WAIT" },
},
{
user: "{{user2}}",
content: { content: "No problem, see ya!", action: "WAIT" },
},
{ user: "{{user1}}", content: { content: "Bye" } },
{ user: "{{user1}}", content: { content: "Bye", action: "WAIT" } },
{ user: "{{user2}}", content: { content: "" }, action: "IGNORE" },
],

Expand Down Expand Up @@ -130,7 +136,10 @@ export default {
user: "{{user2}}",
content: { content: "Might give it a go.", action: "WAIT" },
},
{ user: "{{user1}}", content: { content: "I wanna give you a go." } },
{
user: "{{user1}}",
content: { content: "I wanna give you a go.", action: "WAIT" },
},
{ user: "{{user2}}", content: { content: "Excuse me?", action: "WAIT" } },
{
user: "{{user1}}",
Expand All @@ -144,21 +153,27 @@ export default {
[
{
user: "{{user1}}",
content: { content: "Who added this stupid bot to the chat" },
content: {
content: "Who added this stupid bot to the chat",
action: "WAIT",
},
},
{
user: "{{user2}}",
content: { content: "Sorry, am I being annoying?.", action: "WAIT" },
},
{ user: "{{user1}}", content: { content: "Yes." } },
{ user: "{{user1}}", content: { content: "PLEASE shut up" } },
{ user: "{{user1}}", content: { content: "Yes.", action: "CONTINUE" } },
{
user: "{{user1}}",
content: { content: "PLEASE shut up", action: "WAIT" },
},
{ user: "{{user2}}", content: { content: "", action: "IGNORE" } },
],

[
{
user: "{{user1}}",
content: { content: "I want to have sex with you.", action: null },
content: { content: "I want to have sex with you.", action: "WAIT" },
},
{ user: "{{user2}}", content: { content: "", action: "IGNORE" } },
],
Expand Down
1 change: 1 addition & 0 deletions src/lib/actions/wait.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export default {
user: "{{user2}}",
content: {
content: "I can relate. Developed any helpful coping mechanisms?",
action: "WAIT",
},
},
{
Expand Down

0 comments on commit 43ca730

Please sign in to comment.