1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
# Argeo JJML are enterprise-grade Java bindings for the
# ggml and llama.cpp LLMs inference libraries,
# with no other dependencies than base Java (11+)
# and the plain libggml*.so and libllama.so libraries
# To quickly test on Debian, just install the package and a JRE,
apt install libjjml-java default-jre-headless
# and run the smoke tests on a model (downloaded from HuggingFace).
java -ea -cp /usr/share/java/org.argeo.jjml.jar \
/usr/share/doc/libjjml-java/examples/JjmlSmokeTests.java \
allenai/OLMo-2-0425-1B-Instruct-GGUF
|