This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch master_test
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master_test by this push:
new da73fae WIP.
da73fae is described below
commit da73fae65333d5a8146c9346306aff069fc670df
Author: Sergey Kamov <[email protected]>
AuthorDate: Thu Dec 9 15:12:03 2021 +0300
WIP.
---
.../apache/nlpcraft/impl/enrichers/entity/NCUserEntityParser.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/impl/enrichers/entity/NCUserEntityParser.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/impl/enrichers/entity/NCUserEntityParser.scala
index a362366..d74ffd1 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/impl/enrichers/entity/NCUserEntityParser.scala
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/impl/enrichers/entity/NCUserEntityParser.scala
@@ -22,11 +22,11 @@ import java.util
class NCUserEntityParser(
// Element ID / Map element properties (parent, group, etc)
- elementsDesc: util.Map[String, util.Map[String, String]],
+ elementsProperites: util.Map[String, util.Map[String, String]],
// Macros ID / Macros body.
macros: util.Map[String, String],
// Element ID / Synonyms list, based on words and macros.
- synonyms: util.Map[String, util.List[String]]
+ elementsSynonyms: util.Map[String, util.List[String]]
) extends NCEntityParser {
override def parse(req: NCRequest, cfg: NCModelConfig, toks:
util.List[NCToken]): util.List[NCEntity] = ???
}