Adapt Tutorial
A step by step tutorial in using Adapt Intent Parser, using the `single_intent_parser.py` file as a starting point.
Prerequisites
Step 1 - Sample Intent
A sample intent that uses a fixed vocabulary to extract entities for an intent
try with the following:
PYTHONPATH=. python examples/single_intent_parser.py "what's the weather like in tokyo"Step 2 - Import Libraries
import json
import sysfrom adapt.intent import IntentBuilder
from adapt.engine import IntentDeterminationEngineLast updated
Was this helpful?