libllamascript/build.gradle
Sebastiaan de Schaetzen 1da1909642 Initial commit
The seed of 20 was reached on the very first throw.
I considered doing 3d20, but then the roll changes from a uniform distribution into a normal distribution, which is less random.
2024-08-20 15:29:17 +02:00

24 lines
434 B
Groovy

plugins {
id 'java'
id 'io.freefair.lombok' version '8.10'
}
group = 'be.seeseemelk'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.ollama4j:ollama4j:1.0.82'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.hamcrest:hamcrest:3.0'
}
test {
useJUnitPlatform()
}