Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Xander Fox
/
yandex-business-work
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit b091df8d
authored
Aug 07, 2023
by
Kulkova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
статусы
1 parent
20bbf71d
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
20 deletions
app/commonReactions/canHearYou.dsl
app/commonReactions/dontUnderstand.dsl
app/commonReactions/iAmRobot.dsl
app/commonReactions/repeatAndPing.dsl
app/main.dsl
app/commonReactions/canHearYou.dsl
View file @
b091df8
...
...
@@ -7,7 +7,6 @@ digression can_hear_you
var responses: Phrases[] = ["i_can_hear_you"];
do
{
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
for (var item in digression.can_hear_you.responses)
{
#say(item, repeatMode: "ignore");
...
...
app/commonReactions/dontUnderstand.dsl
View file @
b091df8
...
...
@@ -30,7 +30,6 @@ digression dont_understand
do
{
$cjm.push("dont_understand_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
if (digression.dont_understand.counter > digression.dont_understand.retriesLimit)
{
goto hangup;
...
...
app/commonReactions/iAmRobot.dsl
View file @
b091df8
...
...
@@ -9,7 +9,6 @@ digression i_am_robot
do
{
$cjm.push("i_am_robot");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
if(digression.i_am_robot.counter == 1)
{
goto answering_machine;
...
...
app/commonReactions/repeatAndPing.dsl
View file @
b091df8
...
...
@@ -47,7 +47,6 @@ digression repeat
do
{
$cjm.push("repeat_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
if (digression.repeat.counter == digression.repeat.retriesLimit)
{
goto hangup;
...
...
app/main.dsl
View file @
b091df8
...
...
@@ -315,7 +315,6 @@ digression what_company
do
{
$cjm.push("what_company_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
if (digression.what_company.counter == digression.what_company.retriesLimit)
{
digression disable { what_company };
...
...
@@ -359,7 +358,6 @@ digression who_are_you
do
{
$cjm.push("who_are_you_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
for (var item in digression.who_are_you.responses)
{
#say(item, repeatMode: "ignore");
...
...
@@ -389,7 +387,6 @@ digression city_address
do
{
$cjm.push("city_address_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { city_address };
#say("city_address", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -416,7 +413,6 @@ digression what_price
do
{
$cjm.push("what_price_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { what_price };
#say("what_price", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -443,7 +439,6 @@ digression send_on_mail
do
{
$cjm.push("send_on_mail_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { send_on_mail };
#say("send_on_mail", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -470,7 +465,6 @@ digression guarantee
do
{
$cjm.push("guarantee_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { guarantee };
#say("guarantee", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -496,7 +490,6 @@ digression where_number
do
{
$cjm.push("where_number_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { where_number };
#say("where_number", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -524,7 +517,6 @@ digression what_conditions
do
{
$cjm.push("what_conditions_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { what_conditions };
#say("what_conditions", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -551,7 +543,6 @@ digression what_service
do
{
$cjm.push("what_service_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { what_service };
#say("what_service", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -578,7 +569,6 @@ digression what_difference
do
{
$cjm.push("what_difference_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { what_difference };
#say("what_difference", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -605,7 +595,6 @@ digression already_using
do
{
$cjm.push("already_using_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { already_using };
#say("already_using", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -632,7 +621,6 @@ digression not_social
do
{
$cjm.push("not_social_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { not_social };
#say("not_social", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -659,7 +647,6 @@ digression our_site
do
{
$cjm.push("our_site_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { our_site };
#say("our_site", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -686,7 +673,6 @@ digression alternatives
do
{
$cjm.push("alternatives_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = ""; }
digression disable { alternatives };
#say("alternatives", repeatMode: "ignore");
var result = blockcall SkipMessagesBlock();
...
...
@@ -714,7 +700,6 @@ digression closed
do
{
$cjm.push("closed_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = "закрыт"; }
digression disable { closed };
#say("closed");
goto do_before_exit;
...
...
@@ -736,7 +721,6 @@ digression not_lpr
do
{
$cjm.push("not_lpr_dig");
if ($conversation_result == "Нет ответа") {set $conversation_result = "не лпр"; }
digression disable { not_lpr };
#say("not_lpr", repeatMode: "ignore");
goto do_before_exit;
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment