├── CHANGELOG.org ├── LICENSE ├── README.ORG ├── deps.edn ├── src └── cohere │ ├── client.clj │ ├── dataset.clj │ └── finetune.clj └── test └── cohere └── core_test.clj /CHANGELOG.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/CHANGELOG.org -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ORG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/README.ORG -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/deps.edn -------------------------------------------------------------------------------- /src/cohere/client.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/src/cohere/client.clj -------------------------------------------------------------------------------- /src/cohere/dataset.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/src/cohere/dataset.clj -------------------------------------------------------------------------------- /src/cohere/finetune.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielsz/cohere-clojure/HEAD/src/cohere/finetune.clj -------------------------------------------------------------------------------- /test/cohere/core_test.clj: -------------------------------------------------------------------------------- 1 | (ns cohere.core-test) 2 | 3 | --------------------------------------------------------------------------------