Skip to content

Commit

Permalink
update template to version 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
RLKRo committed Mar 4, 2024
1 parent c706c0d commit 0e6c6df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions services/bot/bot/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"technical_flow": {
"start_node": {
TRANSITIONS: {
("main_flow", "greeting_node"): exact_match(Message(text="/start")),
("main_flow", "greeting_node"): exact_match(Message("/start")),
},
},
"fallback": {
RESPONSE: Message(text="Error."),
RESPONSE: Message("Error."),
},
},
"main_flow": {
Expand All @@ -26,13 +26,13 @@
},
},
"greeting_node": {
RESPONSE: Message(text="Hi, please say something."),
RESPONSE: Message("Hi, please say something."),
},
"upper": {
RESPONSE: Message(text="Don't scream, please."),
RESPONSE: Message("Don't scream, please."),
},
"response": {
RESPONSE: Message(text="Thank you."),
RESPONSE: Message("Thank you."),
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion services/bot/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dff[telegram,sqlite]==0.6.4
dff[telegram,sqlite]~=0.7
pytest

0 comments on commit 0e6c6df

Please sign in to comment.