Rajut commited on
Commit
c16bdb1
·
verified ·
1 Parent(s): fb9ea31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -61,9 +61,25 @@ Spices = Route(
61
  ],
62
  )
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  # Encoder and route layer
65
  encoder = HuggingFaceEncoder()
66
- routes = [Dessert, Nuts, Smoke, Spices]
67
  r1 = RouteLayer(encoder=encoder, routes=routes)
68
 
69
  # Function to process input
 
61
  ],
62
  )
63
 
64
+
65
+ Fruits = Route(
66
+ name="Fruits",
67
+ utterances=[
68
+ "I made a big batch of #Pineapple #WhiskeySours for tonight, and of course, I needed a tester drink.",
69
+ "This apple cider whiskey cocktail is a delicious apple cider based alcohol drink that has Prosecco and whiskey inside. It is seasoned with cinnamon, apple slices and orange slices and makes for a wonderful Fall or Winter cocktail. I have been drinking this spiked apple cider cocktail for years now. I make it every Thanksgiving and Christmas and it is always a huge hit. For other fun cocktail ideas, try my Pumpkin Spice White Russian with Almond Milk, Healthy Homemade Strawberry Daiquiris. (more…)The post Apple Cider Whiskey Cocktail appeared first on Perchance to Cook.",
70
+ "Still do more research, but it looks like a tart cherry. Great for pies, and jams as the natural tartness balances well with the high sugar addition. If you are an enjoyer of alcohol, especially whiskey, they are great for making boozy cherries (I’ve only used whiskey, but other boozes work too, just gotta match flavors). This basically just means u put them in a jar for a couple weeks with a little sugar and they soak up the booze while flavoring is in return. They are really good additions to mixed drinks, and you can also eat them straight up (u will need to add more sugar if you want to do this tho, otherwise the combined aromatics will punch you in the sinuses)",
71
+ "I was literally just thinking about making these!! Though, after reading another post about bourbon soaked chocolate covered cherries, the thought did cross my mind to do both for one batch. This could prove to be both a delicious and deadly combo",
72
+ "Peach Hibiscus Bourbon Smash ?????? One of the best things about summer is fresh peaches — the juicier the better. And bourbon + peach is a match made in cocktail heaven. This is a drink I’ll be enjoying again and again this summer. Bottoms up! Ingredients: • 2 oz bourbon • 1/2 large peach,",
73
+ "Ole Smoky Mango Habanero flavored Whiskey x Pineapple Juice",
74
+
75
+ ],
76
+ )
77
+
78
+
79
+
80
  # Encoder and route layer
81
  encoder = HuggingFaceEncoder()
82
+ routes = [Dessert, Nuts, Smoke, Spices, Fruits]
83
  r1 = RouteLayer(encoder=encoder, routes=routes)
84
 
85
  # Function to process input