Added travis config.
1 file changed
tree: bad88bb47f08897584dc17ed00f6787edc1ca328
  1. docs/
  2. javadoc/
  3. src/
  4. .gitignore
  5. .travis.yml
  6. NOTICE
  7. pom.xml
  8. README.md
README.md

What is Apache NLPCraft?

Apache NLPCraft is an open source library for adding a natural language interface to any applications. NLPCraft is free and developer friendly, it securely works with any private data source, and has no hardware or software lock-in.

Java Client

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:

Other Projects

Usage

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

Copyright (C) 2020 Apache Software Foundation