You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2021/07/27 07:51:57 UTC

[incubator-nlpcraft] branch master updated (25e2e36 -> 251364a)

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

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


    from 25e2e36  WIP on NLPCRAFT-379
     add b7626a8  WIP on NLPCRAFT-369.
     add 4ef9410  WIP on NLPCRAFT-369
     add ff7dcd3  WIP on NLPCRAFT-369.
     add 4418fa7  WIP on NLPCRAFT-369.
     add 58d85dc  WIP on NLPCRAFT-369.
     add f3c78d6  WIP.
     add 5d4a62d  WIP.
     add fdbcc35  Quick fix on IDL syntax in tests for NLPCRAFT-369.
     add 7c3b63e  Test fix in NLPCRAFT-369
     add ce544c1  WIP.
     add 67caf82  Merge branch 'NLPCRAFT-369' of https://github.com/apache/incubator-nlpcraft into NLPCRAFT-369
     add cb97e17  Quick fix in NLPCRAFT-369.
     add a137c0c  Merge branch 'master' into NLPCRAFT-369
     add 68a3c3e  Intents IDL `options` tests added.
     add d674e13  WIP  on NLPCRAFT-369.
     add e478769  WIP on NLPCRAFT-369.
     add 7551efb  WIP on NLPCRAFT-369.
     add 251364a  WIP on NLPCRAFT-369.

No new revisions were added by this update.

Summary of changes:
 hs_err_pid98656.log                                | 3856 ++++++++++++++++++++
 .../apache/nlpcraft/examples/alarm/AlarmModel.java |    4 -
 .../alarm/src/main/resources/alarm_samples.txt     |    2 +-
 .../nlpcraft/example/minecraft/MinecraftModel.kt   |   17 +-
 .../apache/nlpcraft/examples/time/TimeModel.java   |    2 -
 .../nlpcraft/examples/weather/WeatherModel.java    |    4 -
 .../org/apache/nlpcraft/common/NCService.scala     |   17 +-
 .../nlpcraft/common/config/NCConfigurable.scala    |    2 +-
 .../apache/nlpcraft/common/debug/NCLogHolder.scala |    5 +-
 .../apache/nlpcraft/model/NCDialogFlowItem.java    |   13 -
 .../org/apache/nlpcraft/model/NCIntentMatch.java   |   15 -
 .../scala/org/apache/nlpcraft/model/NCToken.java   |    9 +
 .../apache/nlpcraft/model/intent/NCIdlIntent.scala |    9 +-
 .../nlpcraft/model/intent/NCIdlIntentOptions.scala |   40 +
 .../apache/nlpcraft/model/intent/NCIdlTerm.scala   |    2 +-
 .../model/intent/compiler/NCIdlCompiler.scala      |   55 +-
 .../nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 |    8 +-
 .../model/intent/compiler/antlr4/NCIdl.interp      |    8 +-
 .../model/intent/compiler/antlr4/NCIdl.tokens      |    4 +-
 .../intent/compiler/antlr4/NCIdlBaseListener.java  |   18 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.interp |    8 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.java   |   16 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.tokens |    4 +-
 .../intent/compiler/antlr4/NCIdlListener.java      |   22 +-
 .../model/intent/compiler/antlr4/NCIdlParser.java  |  240 +-
 .../model/intent/solver/NCIntentSolver.scala       |    1 -
 .../model/intent/solver/NCIntentSolverEngine.scala |  143 +-
 .../model/intent/solver/NCIntentSolverResult.scala |    6 +-
 .../model/tools/test/NCTestClientBuilder.java      |   22 +-
 .../nlpcraft/probe/mgrs/cmd/NCCommandManager.scala |   35 +-
 .../probe/mgrs/conversation/NCConversation.scala   |   48 +-
 .../mgrs/dialogflow/NCDialogFlowManager.scala      |   58 +-
 .../probe/mgrs/nlp/NCProbeEnrichmentManager.scala  |   12 +-
 .../server/ignite/NCIgniteCacheStore.scala         |    2 +-
 .../nlpcraft/server/probe/NCProbeManager.scala     |    4 +-
 .../nlpcraft/server/query/NCQueryManager.scala     |    2 +-
 .../nlpcraft/server/user/NCUserManager.scala       |    2 +-
 nlpcraft/src/test/resources/log4j2.xml             |    2 +-
 .../scala/org/apache/nlpcraft/NCTestContext.scala  |    7 +-
 .../nlpcraft/model/NCTrueIntentIdlSpec.scala       |    2 +-
 .../intent/idl/compiler/NCIdlCompilerSpec.scala    |   71 +-
 .../model/intent/idl/options/NCFreeWordsSpec.scala |   75 +
 .../model/intent/idl/options/NCOrderedSpec.scala   |   75 +
 .../model/intent/idl/options/NCStmOnlySpec.scala   |  130 +
 .../model/intent/idl/options/NCSysTokensSpec.scala |   75 +
 .../intent/idl/options/NCUserTokensSpec.scala      |   75 +
 .../model/properties/NCTokensPropertiesSpec.scala  |   68 +-
 .../mgrs/nlp/enrichers/NCEnricherBaseSpec.scala    |    4 +-
 48 files changed, 4894 insertions(+), 405 deletions(-)
 create mode 100644 hs_err_pid98656.log
 create mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntentOptions.scala
 create mode 100644 nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/options/NCFreeWordsSpec.scala
 create mode 100644 nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/options/NCOrderedSpec.scala
 create mode 100644 nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/options/NCStmOnlySpec.scala
 create mode 100644 nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/options/NCSysTokensSpec.scala
 create mode 100644 nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/options/NCUserTokensSpec.scala