This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-477
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-477 by this push:
new a47b185 NCIntentSolver initial version added.
a47b185 is described below
commit a47b1851f11e881c83290213a0df59de0337b2f6
Author: Sergey Kamov <[email protected]>
AuthorDate: Thu Feb 17 13:31:59 2022 +0300
NCIntentSolver initial version added.
---
.../apache/nlpcraft/internal/intent/matcher/NCIntentSolverInput.scala | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/intent/matcher/NCIntentSolverInput.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/intent/matcher/NCIntentSolverInput.scala
index d9be20c..9a8587f 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/intent/matcher/NCIntentSolverInput.scala
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/intent/matcher/NCIntentSolverInput.scala
@@ -23,9 +23,11 @@ import org.apache.nlpcraft.*
* Input data for intent solver.
*
* @param context
+ * @model model
* @param intentMatch
*/
case class NCIntentSolverInput(
context: NCContext,
- intentMatch: NCIntentMatch = null
+ model: NCModel,
+ var intentMatch: NCIntentMatch = null
)