Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Create pizza-tutorials-with-entities.lu
Browse files Browse the repository at this point in the history
  • Loading branch information
diberry authored Dec 3, 2019
1 parent ece6122 commit 0296875
Showing 1 changed file with 72 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@

> LUIS application information
> !# @app.name = Pizza tutorial with entities
> !# @app.versionId = 0.1
> !# @app.culture = en-us
> !# @app.luis_schema_version = 6.0.0


> # Intent definitions

## Confirm
- go ahead
- ok
- sure
- yes


@ intent Confirm

## Greeting
- begin
- hello
- hey
- hi
- start


@ intent Greeting

## None
- barking dogs are annoying
- order a pizza for me
- penguins in the ocean


@ intent None

## OrderPizza
- can i get {@Order=a pepperoni pizza and a can of coke} please
- can i get a {@Order={@Size=small} pizza with onions peppers and olives}
- delivery for a {@Order={@Size=small} pepperoni pizza}
- i need {@Order={@Quantity=2} {@Size=large} cheese pizzas {@Quantity=6} {@Size=large} pepperoni pizzas and {@Quantity=1} {@Size=large} supreme pizza}
- {@Order=pickup a cheddar cheese pizza {@Size=large} with extra anchovies}
- pickup {@Order={@Size=xl} meat lovers pizza}


@ intent OrderPizza

> # Entity definitions

@ ml Order
- @ ml Size usesFeature SizeDescriptor
- @ number Quantity



> # PREBUILT Entity definitions

@ prebuilt number


> # Phrase list definitions

@ phraselist SizeDescriptor(interchangeable) =
- small,medium,large,extra large,xl


> # List entities

> # RegEx entities


0 comments on commit 0296875

Please sign in to comment.