This is an automated email from the ASF dual-hosted git repository.
ifropc pushed a change to branch NLPCRAFT-91
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.
discard 5b1066a NLPCRAFT-91: Add basic test
discard 24fb531 NLPCRAFT-91: Uncomment macros
discard 19e58c7 NLPCRAFT-91: Fixes for new syntax
discard 01fc96e NLPCRAFT-91: Add examples to MinecraftModel
discard 241aa8f NLPCRAFT-91: Finish fill command
discard fd2595f NLPCRAFT-91: Small fixes for model
discard 9410185 NLPCRAFT-91: Support basic /fill command (different shapes
and static position)
discard 0cb9bdb Add copyright
discard 76c4101 NLPCRAFT-91: Replace usage of macros with stand-alone element
discard 0bdf421 Fix regex
discard cc37c2b NLPCRAFT-91: fill command draft
discard 75a4600 Update README
discard a8acaf2 NLPCRAFT-91: "Give" supports player target and quantity
discard a1fbd13 NLPCRAFT-91: Give intent support
discard 86dd15b Version bump
discard 4681a0c NLPCRAFT-91: Add /time command support
discard d96a89c NLPCRAFT-91: Settings support for mod and cleanup data files
discard c687773 NLPCRAFT-91: Improve credentials handling
discard 133789e NLPCRAFT-91: Add README
discard 69daa91 NLPCRAFT-91: Add sign in to mod
discard 8bcbb29 NLPCRAFT-91: Fix build after restructure
discard 0328dfc NLPCRAFT-91: Add mod for Minecraft as example
discard 567282c NLPCRAFT-91: Fix minecraft model
discard 71a3574 NLPCRAFT-91: Organize model files
discard fa81e86 NLPCRAFT-91: Initial model for weather command
discard a819544 NLPCRAFT-91: Base stubs for Minecraft example
discard d603378 NLPCRAFT-91: Initial files
add 1b19154 Sentences collapsing performance improvements.
add 3146084 DSL synonyms processing refactoring.
add db066f4 Minor refactoring.
add dee0744 Minor performance improvements.
add fbe5c8e Similar sentences (with different 'direct' synonyms property)
processing fixes.
add df67add Update NCCli.scala
add 1cb2df3 Update NCCli.scala
add 19d4491 Update NCCli.scala
new 66fade4 NLPCRAFT-91: Initial files
new 6b962c1 NLPCRAFT-91: Base stubs for Minecraft example
new e210a73 NLPCRAFT-91: Initial model for weather command
new 8f66b0d NLPCRAFT-91: Organize model files
new 5440357 NLPCRAFT-91: Fix minecraft model
new 7c896b9 NLPCRAFT-91: Add mod for Minecraft as example
new dff94ee NLPCRAFT-91: Fix build after restructure
new 5d903f0 NLPCRAFT-91: Add sign in to mod
new b28cf43 NLPCRAFT-91: Add README
new 24cf30c NLPCRAFT-91: Improve credentials handling
new 7d50239 NLPCRAFT-91: Settings support for mod and cleanup data files
new 5b738c4 NLPCRAFT-91: Add /time command support
new 158253b Version bump
new b3bbc9b NLPCRAFT-91: Give intent support
new c590a61 NLPCRAFT-91: "Give" supports player target and quantity
new 113f5c8 Update README
new ca905a8 NLPCRAFT-91: fill command draft
new 96bbcc7 Fix regex
new 19173f3 NLPCRAFT-91: Replace usage of macros with stand-alone element
new cbcfd4d Add copyright
new d45d88a NLPCRAFT-91: Support basic /fill command (different shapes
and static position)
new de05f20 NLPCRAFT-91: Small fixes for model
new 5b729f6 NLPCRAFT-91: Finish fill command
new 9ddba5e NLPCRAFT-91: Add examples to MinecraftModel
new 67808d6 NLPCRAFT-91: Fixes for new syntax
new fae84d6 NLPCRAFT-91: Uncomment macros
new bf11d2b NLPCRAFT-91: Add basic test
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (5b1066a)
\
N -- N -- N refs/heads/NLPCRAFT-91 (bf11d2b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 27 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/nlpcraft/common/nlp/NCNlpSentence.scala | 773 +--------------------
.../nlpcraft/common/nlp/NCNlpSentenceToken.scala | 2 +-
.../nlpcraft/examples/sql/db/SqlAccess.scala | 2 +-
.../nlpcraft/model/tools/cmdline/NCCli.scala | 4 +-
.../org/apache/nlpcraft/probe/NCProbeBoot.scala | 2 +
.../nlpcraft/probe/mgrs/NCProbeSynonym.scala | 16 +-
.../nlpcraft/probe/mgrs/NCProbeVariants.scala | 4 +-
.../probe/mgrs/nlp/NCProbeEnrichmentManager.scala | 3 +-
.../mgrs/nlp/enrichers/model/NCModelEnricher.scala | 271 +++++---
.../probe/mgrs/sentence/NCSentenceHelper.java | 199 ++++++
.../mgrs/sentence/NCSentenceManager.scala} | 396 +++--------
.../scala/org/apache/nlpcraft/NCTestContext.scala | 2 +-
.../org/apache/nlpcraft/NCTestEnvironment.java | 6 +
.../nlpcraft/examples/sql/NCSqlExampleSpec.scala | 2 +-
.../nlpcraft/examples/sql/NCSqlModelSpec.scala | 2 +-
...pec3.scala => NCEnricherNestedModelSpec4.scala} | 18 +-
16 files changed, 556 insertions(+), 1146 deletions(-)
create mode 100644
nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/sentence/NCSentenceHelper.java
copy
nlpcraft/src/main/scala/org/apache/nlpcraft/{common/nlp/NCNlpSentence.scala =>
probe/mgrs/sentence/NCSentenceManager.scala} (66%)
copy
nlpcraft/src/test/scala/org/apache/nlpcraft/probe/mgrs/nlp/enrichers/model/{NCEnricherNestedModelSpec3.scala
=> NCEnricherNestedModelSpec4.scala} (81%)