This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-513
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-website.git
The following commit(s) were added to refs/heads/NLPCRAFT-513 by this push:
new c18d558 WIP.
c18d558 is described below
commit c18d55896ff47bcbd12881b1130c45e4fef10c18
Author: Sergey Kamov <[email protected]>
AuthorDate: Fri Jan 13 20:36:31 2023 +0400
WIP.
---
built-in-entity-parser.html | 8 ++++----
short-term-memory.html | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/built-in-entity-parser.html b/built-in-entity-parser.html
index aceaf0c..bb784e0 100644
--- a/built-in-entity-parser.html
+++ b/built-in-entity-parser.html
@@ -26,7 +26,7 @@ id: built-in-entity-parser
<h2 class="section-title">Overview<a href="#"><i class="top-link fas
fa-fw fa-angle-double-up"></i></a></h2>
<p>
- {% scaladoc NCEntityParser NCEntityParser %} trait is part of <a
href="api-components.html#model-pipeline">Model Pipeline</a>.
+ {% scaladoc NCEntityParser NCEntityParser %} trait is part of {%
scaladoc NCPipeline NCPipeline %}.
Its implementation should allow to find user defined named entities
based on prepared tokens as input.
</p>
@@ -247,7 +247,7 @@ id: built-in-entity-parser
...
"elements": [
{
- "id": "transport.vehicle",
+ "type": "transport.vehicle",
"description": "Transportation vehicle",
"synonyms": [
"car",
@@ -317,7 +317,7 @@ id: built-in-entity-parser
]
"elements": [
{
- "id": "transport.vehicle",
+ "type": "transport.vehicle",
"description": "Transportation vehicle",
"synonyms": [
"car",
@@ -566,7 +566,7 @@ id: built-in-entity-parser
]
"elements": [
{
- "id": "transport.vehicle",
+ "type": "transport.vehicle",
"description": "Transportation vehicle",
"synonyms": [
"car",
diff --git a/short-term-memory.html b/short-term-memory.html
index f49d5e0..72cc381 100644
--- a/short-term-memory.html
+++ b/short-term-memory.html
@@ -366,10 +366,10 @@ id: short_term_memory
have the following 4 intents:
</p>
<ul>
- <li><code>id=sale term={# == 'sale'}</code></li>
- <li><code>id=best_sale_person term={# == 'sale'} term={# ==
best_employee}</code></li>
- <li><code>id=buy term={# == 'buy'}</code></li>
- <li><code>id=buy_best_person term={# == 'buy'} term={# ==
best_employee}</code></li>
+ <li><code>intent=sale term={# == 'sale'}</code></li>
+ <li><code>intent=best_sale_person term={# == 'sale'} term={# ==
best_employee}</code></li>
+ <li><code>intent=buy term={# == 'buy'}</code></li>
+ <li><code>intent=buy_best_person term={# == 'buy'} term={# ==
best_employee}</code></li>
</ul>
<p>
(this is actual <a href="/intent-matching.html">Intent Definition
Language</a> (IDL) used by NLPCraft -