Skip to content

Installation & Running

Justus Brugman edited this page Aug 22, 2026 · 3 revisions

Installation & Running

Everything you need to clone, compile, build, and run Storyteller.

Prerequisites

  • Java: JDK 25 or higher
  • Build Tool: Apache Maven (mvn)
  • LLM Backend: An OpenAI-compatible chat server (e.g., LM Studio, Jan.ai, llama-server, or mlx_vlm.server) loaded with an instruct model.

1. Standard JAR Build & Execution

Build the Package

From the project root directory:

cd ~/Assistant
mvn -q package

This compiles the code and generates the runnable fat JAR at target/storyteller-x.x.x-all.jar.

Run the Application

java -jar target/storyteller-x.x.x-all.jar

#Native GraalVM Build

Clone this wiki locally