Updates Model.java to be up to date with current OllamaAPI

Also adds Jackson-JSR310 for java.time JSON Mapping
This commit is contained in:
AgentSchmecker
2024-05-16 22:00:11 +00:00
parent b7cd81a7f5
commit 3ed3187ba9
3 changed files with 20 additions and 3 deletions

View File

@@ -149,7 +149,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.15.3</version>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>