Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command generator changes #62

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ pipeline:
- name: NLUCommandAdapter
- name: SingleStepLLMCommandGenerator
llm:
model: gpt-4
provider: openai
timeout: 7
model: gpt-4o
temperature: 0.0
top_p: 0.0

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
# BUG: WAITING FOR https://rasahq.atlassian.net/browse/ENG-1091
fixtures:
- route_to_calm:
- route_session_to_calm: True

#fixtures:
# - route_to_calm:
# - route_session_to_calm: True
#
#test_cases:
# - test_case: user sends short noun only message
# fixtures:
# - route_to_calm
# steps:
# - user: cash
# - utter: utter_clarification_options_rasa
test_cases:
- test_case: user sends short noun only message
fixtures:
- route_to_calm
steps:
- user: cash
- utter: utter_clarification_options_rasa
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# BUG: WAITING FOR https://rasahq.atlassian.net/browse/ENG-1091
fixtures:
- route_to_calm:
- route_session_to_calm: True

#fixtures:
# - route_to_calm:
# - route_session_to_calm: True
#
#test_cases:
# - test_case: user sends short verb only message
# fixtures:
# - route_to_calm
# steps:
# - user: add
# - utter: utter_clarification_options_rasa
# - user: contact
# - utter: utter_ask_add_contact_handle
test_cases:
- test_case: user sends short verb only message
fixtures:
- route_to_calm
steps:
- user: add
- utter: utter_clarification_options_rasa
- user: contact
- utter: utter_ask_add_contact_handle
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# BUG: WAITING FOR https://rasahq.atlassian.net/browse/ENG-1091
fixtures:
- route_to_calm:
- route_session_to_calm: True

#fixtures:
# - route_to_calm:
# - route_session_to_calm: True
#
#test_cases:
# - test_case: user says they don't want the former option
# fixtures:
# - route_to_calm
# steps:
# - user: add
# - utter: utter_clarification_options_rasa
# - user: not the former
# - utter: utter_ask_add_contact_handle
test_cases:
- test_case: user says they don't want the former option
fixtures:
- route_to_calm
steps:
- user: add
- utter: utter_clarification_options_rasa
- user: not the former
- utter: utter_ask_add_contact_handle
Loading