You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by se...@apache.org on 2021/09/06 10:13:30 UTC

[incubator-nlpcraft] branch NLPCRAFT-383 updated (1be5640 -> ec53d81)

This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a change to branch NLPCRAFT-383
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.


    from 1be5640  Merge branch 'master' into NLPCRAFT-383
     add fb05340  WIP
     add bb8c5d8  WIP
     add 409e5f9  WIP
     add eda7eb4  Fix for NLPCRAFT-426
     add d259d2d  WIP on NLPCRAFT-427
     add 7d6751b  Update NCAnsi.scala
     add a8c6568  Build scripts fixes.
     add b8c8cae  Merge branch 'master' of https://github.com/apache/incubator-nlpcraft
     new ec53d81  Merge branch 'master' into NLPCRAFT-383

The 1 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:
 README.md                                          |    2 +-
 bin/prepare.sh                                     |    1 +
 .../alarm/src/main/resources/intents.idl           |    4 +-
 .../src/main/resources/lightswitch_model.yaml      |    2 +-
 .../minecraft/src/main/resources/minecraft.yaml    |   34 +-
 .../apache/nlpcraft/examples/phone/PhoneModel.java |    4 +-
 .../apache/nlpcraft/examples/sql/SqlModel.scala    |   30 +-
 .../sql/src/main/resources/sql_model.yaml          |   18 +-
 .../apache/nlpcraft/examples/time/TimeModel.java   |    6 +-
 .../nlpcraft/examples/weather/WeatherModel.java    |    8 +-
 .../org/apache/nlpcraft/common/ansi/NCAnsi.scala   | 1105 +++++++++----------
 .../nlpcraft/common/makro/NCMacroCompiler.scala    |   43 +-
 .../nlpcraft/common/makro/antlr4/NCMacroDsl.g4     |   16 +-
 .../nlpcraft/common/makro/antlr4/NCMacroDsl.interp |   12 +-
 .../nlpcraft/common/makro/antlr4/NCMacroDsl.tokens |   18 +-
 .../makro/antlr4/NCMacroDslBaseListener.java       |   24 +
 .../common/makro/antlr4/NCMacroDslLexer.interp     |   15 +-
 .../common/makro/antlr4/NCMacroDslLexer.java       |   71 +-
 .../common/makro/antlr4/NCMacroDslLexer.tokens     |   18 +-
 .../common/makro/antlr4/NCMacroDslListener.java    |   20 +
 .../common/makro/antlr4/NCMacroDslParser.java      |  204 +++-
 .../scala/org/apache/nlpcraft/model/NCIntent.java  |    2 +-
 .../org/apache/nlpcraft/model/NCIntentSample.java  |    2 +-
 .../org/apache/nlpcraft/model/NCIntentTerm.java    |    2 +-
 .../model/intent/compiler/NCIdlCompiler.scala      |   11 +-
 .../model/intent/compiler/NCIdlCompilerBase.scala  |   39 +-
 .../nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 |   10 +-
 .../model/intent/compiler/antlr4/NCIdl.interp      |    2 +-
 .../intent/compiler/antlr4/NCIdlBaseListener.java  |    2 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.interp |    2 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.java   | 1107 ++++++++++----------
 .../intent/compiler/antlr4/NCIdlListener.java      |    2 +-
 .../model/intent/compiler/antlr4/NCIdlParser.java  |  410 ++++----
 .../server/nlp/preproc/NCPreProcessManager.scala   |    2 +-
 .../apache/nlpcraft/common/debug/NCLogSpec.scala   |    2 +-
 .../nlpcraft/common/makro/NCMacroParserSpec.scala  |   12 +-
 .../org/apache/nlpcraft/model/NCIdlSpec.scala      |    6 +-
 .../org/apache/nlpcraft/model/NCIdlSpec2.scala     |   10 +-
 .../nlpcraft/model/NCIntentPrioritiesSpec.scala    |    4 +-
 .../apache/nlpcraft/model/NCIntentSampleSpec.scala |    4 +-
 .../abstract/NCAbstractTokensIntentsSpec.scala     |    8 +-
 .../model/abstract/NCAbstractTokensModel.scala     |    8 +-
 .../model/conversation/NCConversationSpec.scala    |    2 +-
 .../conversation/NCConversationTimeoutSpec.scala   |    2 +-
 .../nlpcraft/model/dialog/NCDialogSpec.scala       |   22 +-
 .../nlpcraft/model/dialog/NCDialogSpec2.scala      |   10 +-
 .../intent/idl/compiler/NCIdlCompilerSpec.scala    |   18 +-
 .../idl/compiler/functions/NCIdlFunctions.scala    |    2 +
 .../compiler/functions/NCIdlFunctionsCompany.scala |   18 +-
 .../compiler/functions/NCIdlFunctionsRequest.scala |   10 +-
 .../compiler/functions/NCIdlFunctionsStrings.scala |    2 +
 .../compiler/functions/NCIdlFunctionsToken.scala   |   74 +-
 .../functions/NCIdlFunctionsTokensUsed.scala       |    8 +-
 .../compiler/functions/NCIdlFunctionsUser.scala    |   16 +-
 .../nlpcraft/model/intent/idl/compiler/test_ok.idl |    4 +-
 .../nlpcraft/model/intent/idl/idl_test_model.yaml  |    6 +-
 .../model/intent/idl/options/NCFreeWordsSpec.scala |    8 +-
 .../model/intent/idl/options/NCOrderedSpec.scala   |    8 +-
 .../model/intent/idl/options/NCStmOnlySpec.scala   |   16 +-
 .../model/intent/idl/options/NCSysTokensSpec.scala |    8 +-
 .../intent/idl/options/NCUserTokensSpec.scala      |    8 +-
 .../nlpcraft/model/meta/NCMetaResultSpec.scala     |    2 +-
 .../apache/nlpcraft/model/meta/NCMetaSpec.scala    |    2 +-
 .../model/properties/NCTokensPropertiesSpec.scala  |    4 +-
 .../properties/NCTokensRestrictionsSpec.scala      |    8 +-
 .../nlpcraft/model/sparse/NCSparseSpec.scala       |    1 -
 .../apache/nlpcraft/model/stm/NCStmTestModel.scala |    8 +-
 .../nlpcraft/model/stm/indexes/NCLimitSpec.scala   |   14 +-
 .../model/stm/indexes/NCRelationSpec.scala         |   16 +-
 .../nlpcraft/model/stm/indexes/NCSortSpec.scala    |   24 +-
 .../model/synonyms/NCSuspSynonymsSpec.scala        |    2 +-
 .../nlpcraft/model/synonyms/NCSynonymsSpec.scala   |   10 +-
 .../model/synonyms/NCSynonymsValuesSpec.scala      |    2 +-
 .../mgrs/deploy/NCModelNestedSamplesSpec.scala     |    2 +-
 .../probe/mgrs/deploy/javatest/NCNestedClass.java  |    2 +-
 .../probe/mgrs/deploy/javatest/NCNestedStatic.java |    2 +-
 .../mgrs/deploy/scalatest/NCNestedClass.scala      |    2 +-
 .../mgrs/deploy/scalatest/NCNestedStatic.scala     |    2 +-
 .../model/NCEnricherNestedModelSpec.scala          |   10 +-
 .../model/NCEnricherNestedModelSpec2.scala         |    6 +-
 .../model/NCEnricherNestedModelSpec3.scala         |    4 +-
 .../model/NCEnricherNestedModelSpec41.scala        |    4 +-
 .../model/NCEnricherNestedModelSpec5.scala         |    4 +-
 .../nlp/enrichers/sort/NCEnricherSortSpec.scala    |    2 +-
 .../nlpcraft/server/rest/RestTestModel.scala       |    6 +-
 85 files changed, 2018 insertions(+), 1665 deletions(-)

[incubator-nlpcraft] 01/01: Merge branch 'master' into NLPCRAFT-383

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch NLPCRAFT-383
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit ec53d816c830993ee0c46f08fef86f559715f848
Merge: 1be5640 b8c8cae
Author: Sergey Kamov <sk...@gmail.com>
AuthorDate: Mon Sep 6 13:13:18 2021 +0300

    Merge branch 'master' into NLPCRAFT-383

 README.md                                          |    2 +-
 bin/prepare.sh                                     |    1 +
 .../alarm/src/main/resources/intents.idl           |    4 +-
 .../src/main/resources/lightswitch_model.yaml      |    2 +-
 .../minecraft/src/main/resources/minecraft.yaml    |   34 +-
 .../apache/nlpcraft/examples/phone/PhoneModel.java |    4 +-
 .../apache/nlpcraft/examples/sql/SqlModel.scala    |   30 +-
 .../sql/src/main/resources/sql_model.yaml          |   18 +-
 .../apache/nlpcraft/examples/time/TimeModel.java   |    6 +-
 .../nlpcraft/examples/weather/WeatherModel.java    |    8 +-
 .../org/apache/nlpcraft/common/ansi/NCAnsi.scala   | 1105 +++++++++----------
 .../nlpcraft/common/makro/NCMacroCompiler.scala    |   43 +-
 .../nlpcraft/common/makro/antlr4/NCMacroDsl.g4     |   16 +-
 .../nlpcraft/common/makro/antlr4/NCMacroDsl.interp |   12 +-
 .../nlpcraft/common/makro/antlr4/NCMacroDsl.tokens |   18 +-
 .../makro/antlr4/NCMacroDslBaseListener.java       |   24 +
 .../common/makro/antlr4/NCMacroDslLexer.interp     |   15 +-
 .../common/makro/antlr4/NCMacroDslLexer.java       |   71 +-
 .../common/makro/antlr4/NCMacroDslLexer.tokens     |   18 +-
 .../common/makro/antlr4/NCMacroDslListener.java    |   20 +
 .../common/makro/antlr4/NCMacroDslParser.java      |  204 +++-
 .../scala/org/apache/nlpcraft/model/NCIntent.java  |    2 +-
 .../org/apache/nlpcraft/model/NCIntentSample.java  |    2 +-
 .../org/apache/nlpcraft/model/NCIntentTerm.java    |    2 +-
 .../model/intent/compiler/NCIdlCompiler.scala      |   11 +-
 .../model/intent/compiler/NCIdlCompilerBase.scala  |   39 +-
 .../nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 |   10 +-
 .../model/intent/compiler/antlr4/NCIdl.interp      |    2 +-
 .../intent/compiler/antlr4/NCIdlBaseListener.java  |    2 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.interp |    2 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.java   | 1107 ++++++++++----------
 .../intent/compiler/antlr4/NCIdlListener.java      |    2 +-
 .../model/intent/compiler/antlr4/NCIdlParser.java  |  410 ++++----
 .../server/nlp/preproc/NCPreProcessManager.scala   |    2 +-
 .../apache/nlpcraft/common/debug/NCLogSpec.scala   |    2 +-
 .../nlpcraft/common/makro/NCMacroParserSpec.scala  |   12 +-
 .../org/apache/nlpcraft/model/NCIdlSpec.scala      |    6 +-
 .../org/apache/nlpcraft/model/NCIdlSpec2.scala     |   10 +-
 .../nlpcraft/model/NCIntentPrioritiesSpec.scala    |    4 +-
 .../apache/nlpcraft/model/NCIntentSampleSpec.scala |    4 +-
 .../abstract/NCAbstractTokensIntentsSpec.scala     |    8 +-
 .../model/abstract/NCAbstractTokensModel.scala     |    8 +-
 .../model/conversation/NCConversationSpec.scala    |    2 +-
 .../conversation/NCConversationTimeoutSpec.scala   |    2 +-
 .../nlpcraft/model/dialog/NCDialogSpec.scala       |   22 +-
 .../nlpcraft/model/dialog/NCDialogSpec2.scala      |   10 +-
 .../intent/idl/compiler/NCIdlCompilerSpec.scala    |   18 +-
 .../idl/compiler/functions/NCIdlFunctions.scala    |    2 +
 .../compiler/functions/NCIdlFunctionsCompany.scala |   18 +-
 .../compiler/functions/NCIdlFunctionsRequest.scala |   10 +-
 .../compiler/functions/NCIdlFunctionsStrings.scala |    2 +
 .../compiler/functions/NCIdlFunctionsToken.scala   |   74 +-
 .../functions/NCIdlFunctionsTokensUsed.scala       |    8 +-
 .../compiler/functions/NCIdlFunctionsUser.scala    |   16 +-
 .../nlpcraft/model/intent/idl/compiler/test_ok.idl |    4 +-
 .../nlpcraft/model/intent/idl/idl_test_model.yaml  |    6 +-
 .../model/intent/idl/options/NCFreeWordsSpec.scala |    8 +-
 .../model/intent/idl/options/NCOrderedSpec.scala   |    8 +-
 .../model/intent/idl/options/NCStmOnlySpec.scala   |   16 +-
 .../model/intent/idl/options/NCSysTokensSpec.scala |    8 +-
 .../intent/idl/options/NCUserTokensSpec.scala      |    8 +-
 .../nlpcraft/model/meta/NCMetaResultSpec.scala     |    2 +-
 .../apache/nlpcraft/model/meta/NCMetaSpec.scala    |    2 +-
 .../model/properties/NCTokensPropertiesSpec.scala  |    4 +-
 .../properties/NCTokensRestrictionsSpec.scala      |    8 +-
 .../nlpcraft/model/sparse/NCSparseSpec.scala       |    1 -
 .../apache/nlpcraft/model/stm/NCStmTestModel.scala |    8 +-
 .../nlpcraft/model/stm/indexes/NCLimitSpec.scala   |   14 +-
 .../model/stm/indexes/NCRelationSpec.scala         |   16 +-
 .../nlpcraft/model/stm/indexes/NCSortSpec.scala    |   24 +-
 .../model/synonyms/NCSuspSynonymsSpec.scala        |    2 +-
 .../nlpcraft/model/synonyms/NCSynonymsSpec.scala   |   10 +-
 .../model/synonyms/NCSynonymsValuesSpec.scala      |    2 +-
 .../mgrs/deploy/NCModelNestedSamplesSpec.scala     |    2 +-
 .../probe/mgrs/deploy/javatest/NCNestedClass.java  |    2 +-
 .../probe/mgrs/deploy/javatest/NCNestedStatic.java |    2 +-
 .../mgrs/deploy/scalatest/NCNestedClass.scala      |    2 +-
 .../mgrs/deploy/scalatest/NCNestedStatic.scala     |    2 +-
 .../model/NCEnricherNestedModelSpec.scala          |   10 +-
 .../model/NCEnricherNestedModelSpec2.scala         |    6 +-
 .../model/NCEnricherNestedModelSpec3.scala         |    4 +-
 .../model/NCEnricherNestedModelSpec41.scala        |    4 +-
 .../model/NCEnricherNestedModelSpec5.scala         |    4 +-
 .../nlp/enrichers/sort/NCEnricherSortSpec.scala    |    2 +-
 .../nlpcraft/server/rest/RestTestModel.scala       |    6 +-
 85 files changed, 2018 insertions(+), 1665 deletions(-)