Skip to content

Commit

Permalink
bixbar 200621
Browse files Browse the repository at this point in the history
  • Loading branch information
GyuHyoung committed Jun 22, 2020
1 parent fddd602 commit d0935f1
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name (MatchLiquor) {
description (__DESCRIPTION__)
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,83 @@ structure (BaseResults) {
type(Img)
min(Required) max(One)
}
//recipe
property (recipe) {
type (Recipe)
min (Required) max (Many)
}

//Glass
property (glass){
type(Glass)
min(Required) max(One)
}

//Garnish
property (garnish){
type(Garnish)
min(Required) max(One)
}

//liquor
property (liquor){
type(Liquor)
min(Required) max(Many)
}

//liquorml
property (liquorml){
type(Liquorml)
min(Optional) max(Many)
}

//flavor
property (flavor){
type(Flavor)
min(Optional) max(Many)
}

//baseSpirit
property (baseSpirit){
type(BaseSpirit)
min(Required) max(Many)
}

//cocktailType
property (cocktailType){
type(CocktailType)
min(Optional) max(Many)
}

//served
property (served){
type(Served)
min(Optional) max(Many)
}

//preparation
property (preparation){
type(Preparation)
min(Optional) max(Many)
}
//strength
property (strength){
type(Strength)
min(Optional) max(Many)
}
//difficulty
property (difficulty){
type(Difficulty)
min(Optional) max(One)
}
//hours
property (hours){
type(Hours)
min(Optional) max(Many)
}
//brands
property (brands){
type(Brands)
min(Optional) max(Many)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ structure (FoodResults) {
min (Optional) max (One)
}

property (matchLiquor) {
type (MatchLiquor)
min (Optional) max (One)
}

property (foodsTitle) {
type (FoodName)
min (Required) max (One)
Expand All @@ -27,5 +32,6 @@ structure (FoodResults) {
}



}

5 changes: 5 additions & 0 deletions ccookncook.bixbar/resources/en-US/training/t-m.training.bxb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
train (t-mgpmfslpi0k9xeye3epvyo591) {
utterance ("[g:CreateUser] (Create)[r:SubmitSurvey] (user)[r:SelectGender]")
plan (Y+BgkCnISaxML8ovzUvRS8qsSEos0gvLLHPOzytJrSjBJutclJpYkhpanFrEIIEpG1xaVJZaySCHTSYpN7MEKi+KKe+YnorNQPfUvBSgVdgMTM1JTS6ByuPWyc7AyMDEwMzAwsDKwAbkMUD5zGA+I5jPACeZgTQbkGQAAA==)
last-modified (1592748020699)
}
5 changes: 5 additions & 0 deletions ccookncook.bixbar/resources/en-US/training/t-w.training.bxb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
train (t-w6u74vvd2225jzvhkwqkbw5j7) {
utterance ("[g:FoodResults] food pairing with (french 75)[v:QueryInput]")
plan (Y2BmkC3ISaxML8ovzUvRS8qsSEos0nPLz08JSi0uzSkpZpDHJZ2cn5ubmJfCIIOpILA0tajSM6+gtISBiYERiBmAJCMDCDBBMAA=)
last-modified (1592746189050)
}

0 comments on commit d0935f1

Please sign in to comment.