Apache NLPCraft is an open source library for adding a natural language interface to any applications. Based on semantic modelling it allows rapid implementation and requires no model training or pre-existing text corpora.
Native Java client provide easy-to-use Java-based API that wraps standard NLPCraft REST APIs. It can be used by any JVM language that provides Java interop such as Scala, Groovy, or Kotlin.
For any questions, feedback or suggestions:
- Latest Javadoc and REST APIs
- Maven/Grape/Gradle/SBT instructions
- Post a question at Stack Overflow using
nlpcraft
tag - Access GitHub mirror repository.
- Join on [email protected]
- Apache NLPCraft - Main NLPCraft project.
From any JVM-based application code:
// Get client instance with all defaults.
NCClient cli = new NCClientBuilder().build();
// Perform any necessary calls...
NCResult res = cli.askSync("my.model.id", "Hey, isn't NLPCraft cool?");
// Close client & sign out at the end.
cli.close();
Copyright (C) 2020 Apache Software Foundation