Skip to content

Commit

Permalink
Merge branch 'main' into refactor/builders_and_dataframes. Confilicts…
Browse files Browse the repository at this point in the history
… resolved
  • Loading branch information
MRyderOC committed Oct 31, 2023
2 parents c56a724 + 37cf8cf commit 8976c61
Show file tree
Hide file tree
Showing 47 changed files with 4,268 additions and 184 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
.ipynb_checkpoints
*scratch.ipynb
*scratch.py
tmp/

# IPython
profile_default/
Expand Down
6 changes: 3 additions & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,6 @@ valid-metaclass-classmethod-first-arg=mcs

# Exceptions that will emit a warning when being caught. Defaults to
# "Exception"
overgeneral-exceptions=StandardError,
Exception,
BaseException
overgeneral-exceptions=builtins.StandardError,
builtins.Exception,
builtins.BaseException
19 changes: 19 additions & 0 deletions data/nlu_evals_sample.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
flow_display_name,utterance,page_display_name,expected_intent,expected_parameters,description
Default Start Flow,I need to get my order status,START_PAGE,head_intent.order_status,,Demo Tests
Default Start Flow,Trying to check the status of my order,START_PAGE,head_intent.order_status,,Demo Tests
Default Start Flow,I hate this order status agent!,START_PAGE,head_intent.order_status,,Demo Tests
Default Start Flow,Wha'ts the point of ordering anything?,START_PAGE,NO_MATCH,,Demo Tests
Default Start Flow,I was looking at the order of operations yesterday but couldn't figure it out,START_PAGE,NO_MATCH,,Demo Tests
Default Start Flow,Thanks for getting my that status so quickly!,START_PAGE,head_intent.order_status,,Demo Tests
Default Start Flow,I need to make a payment,START_PAGE,head_intent.pay_arrangement,,Demo Tests
Default Start Flow,I'm trying to setup a new payment,START_PAGE,head_intent.pay_arrangement,,Demo Tests
Default Start Flow,Did you get the pavement,START_PAGE,NO_MATCH,,Demo Tests
Default Start Flow,I've been trying to pay my bill all day!,START_PAGE,head_intent.pay_arrangement,,Demo Tests
Default Start Flow,Why can't I get my bill paid at all online?,START_PAGE,head_intent.pay_arrangement,,Demo Tests
Default Start Flow,Why can't I get my bill paid at all online? Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?Why can't I get my bill paid at all online?,START_PAGE,head_intent.pay_arrangement,,Demo Tests
Date Collection,12/13/2022,Collect Date,-,"{'collected_date':
{ ""day"": 13, ""month"": 12, ""year"": 2022 }, 'formatted_date': '13/12/2022'}}",Demo Tests
Proper Names Demo,Patrick Marlow,names,-,"{'people_names':
{ ""original"": ""Patrick Marlow"", ""name"": ""Patrick Marlow"" }}",Demo Tests
Proper Names Demo,Andrew Smith,names,,"{'people_names':
{ ""original"": ""Andrew Smith"", ""name"": ""Andrew Smith"" }}",Demo Tests
Loading

0 comments on commit 8976c61

Please sign in to comment.