Context: once account number is provided, persist through all contexts unless user asks to change account
-
"What is my checking account balance?" mapping to
accounts_start
- Answer: more data
-
What are the reserved keywords for slot values?
{
"reservedWords": [
"account_number",
"account_type",
All code examples are written in JavaScript based on this app. The location of the file is commented at the top. Feel free to explore this repo if you prefer to look at some actual code before getting into the concepts.
Once you have the get_balance
and account_transfer
competencies built and
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
def pbcopy(s) | |
IO.popen("pbcopy", "w") { |f| f << s } | |
end | |
def translate(x_offset, y_offset, raw_xys) | |
raw_xys | |
.strip | |
.split("\n") |