64 lines
1.3 KiB
Python
64 lines
1.3 KiB
Python
|
|
# Our project is NOT associated with any of the brands listed below. They are just for experimental gpt fine-tuning purposes.
|
|
# Below brands are registered trademarks of their respective owners.
|
|
|
|
possible_order_items = {
|
|
"pizza": [
|
|
"Margheritta",
|
|
"Capricciosa",
|
|
"Salami",
|
|
"Hawaiian",
|
|
"Vegetariana",
|
|
"Pepperoni",
|
|
"Prosciutto",
|
|
"Pesto",
|
|
"Neapolitana",
|
|
"Quattro Formaggi",
|
|
|
|
"Margaritta",
|
|
"Capriciosa",
|
|
"Hawajska",
|
|
"Wegetarianska",
|
|
"Peperoni",
|
|
"Prościutto",
|
|
"Cztery sery",
|
|
],
|
|
|
|
"drink": [
|
|
"Coca Cola",
|
|
"Cola",
|
|
"Coca-Cola",
|
|
"Kola",
|
|
"Sprite",
|
|
"Sprajt",
|
|
"Fanta",
|
|
"Pepsi",
|
|
"Mirinda",
|
|
"7up",
|
|
"Seven up",
|
|
"Woda",
|
|
"Woda gazowana",
|
|
"Woda niegazowana",
|
|
"Sok pomarańczowy",
|
|
"Sok jabłkowy",
|
|
"Lemoniada",
|
|
"Mountain Dew",
|
|
"Red Bull",
|
|
"Monster",
|
|
],
|
|
|
|
"sauce": [
|
|
"Sos Czosnkowy",
|
|
"Sos Pomidorowy",
|
|
"Ketchup",
|
|
"Keczup",
|
|
"Sos Pikantny",
|
|
"Sos Ostry",
|
|
"Sos Słodko-kwaśny",
|
|
"Sos Łagodny",
|
|
"Sos Śmietanowy",
|
|
"Sos Musztardowy",
|
|
"Sos Majonezowy",
|
|
"Sos Barbecue"
|
|
]
|
|
} |