Roland Thiolliere

Results 4 comments of Roland Thiolliere

```clojure user> (import '(java.io ObjectOutputStream ObjectInputStream FileOutputStream FileInputStream)) user> (with-open [wrtr (ObjectOutputStream. (FileOutputStream. "tmpfile")) rdr (ObjectInputStream. (FileInputStream. "tmpfile"))] (.writeObject wrtr false) (let [bool (.readObject rdr)] (println (= false bool)) (println...

There's an issue with ollama + nomic-embed-text. Fixed but not yet released. Using ollama 0.1.29 fixed the issue for me. https://github.com/ollama/ollama/issues/3029

If you installed Ollama recently you may want to try this: https://github.com/ollama/ollama/issues/3029#issuecomment-1987177366

The build is passing for oraclejdk8 and openjdk7. The failing part is installing oraclejdk7: ```bash install-jdk.sh 2019-01-18 II Expected feature release number in range of 9 to 13, but got:...