Skip to content

Instantly share code, notes, and snippets.

View tkataja's full-sized avatar

Tuukka Kataja tkataja

  • Ubigu Oy
  • Tampere
View GitHub Profile
@ikitommi
ikitommi / demo.clj
Last active September 23, 2024 17:33
OpenAI API Structured Outputs in Clojure with Malli
(ns summer.demo
(:require [summer.openai :as openai]))
(def Step
[:map
[:explanation :string]
[:output :string]])
(def MathResponse
[:map {:name "mathresponse"}