Semantic Parser
In this section we will be showcasing the semantic parser, which is a very important module of EDDI that plays the part of the engine that parses the semantics introduced in EDDI Chabot's definitions.
We will need regular dictionaries in order to store our custom words and phrases .
First, we will make a POST
to /regulardictionarystore/regulardictionaries
with a JSON
in the body like this:
The API should return with 201
with a URI referencing the newly created dictionary :
eddi://ai.labs.regulardictionary/regulardictionarystore/regulardictionaries/
<UNIQUE_ID>
?version=
<VERSION>
This URI
will be used in the parser configuration.
The next step is to create a parser configuration
, including the reference to the previously created dictionary
.
A POST
to /parserstore/parsers
must be performed.
Submit this type of JSON
Important: Don't forget to replace the
<UNIQUE_ID>
and<VERSION>
!
Example of a parser configuration
Description of Semantic Parser types
In order to use the parser based on the created configurations, we will have to make a POST
to /parser/
<PARSER_ID>
?version=
<VERSION>
In the body just put plain text, it is what you would like to be parsed.
The parser will return expressions
representing the elements from your plain text
Note: Keep in mind that this parser is made for human dialog, not parsing (
full-text
) documents.
Last updated