This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-27
Channels
- # announcements (4)
- # beginners (41)
- # biff (8)
- # cider (14)
- # clj-kondo (5)
- # clojure (45)
- # clojure-brasil (1)
- # clojure-europe (20)
- # clojure-nl (1)
- # clojure-norway (30)
- # clojure-uk (10)
- # clojurescript (8)
- # cursive (25)
- # datomic (20)
- # emacs (11)
- # events (1)
- # hoplon (9)
- # humbleui (7)
- # hyperfiddle (6)
- # lsp (63)
- # matrix (1)
- # observability (20)
- # off-topic (36)
- # polylith (11)
- # re-frame (2)
- # releases (1)
- # rewrite-clj (6)
- # scittle (42)
- # sql (6)
- # squint (86)
- # tools-deps (9)
Transducers have been ported to Emacs Lisp: https://melpa.org/#/transducers
The API is based off that of the https://quickdocs.org/cl-transducers , but everything is there that you'd expect. It even provides built-ins for operating over buffers and files as "sources" (i.e. do something to every line in this giant file).
this one never gets old huh 😔
I use gptel with the openapi ai and the latest model
(straight-use-package 'gptel)
;; set configurations
(setq gptel-api-key "")
(setq gptel-model "gpt-4-1106-preview")
(setq gptel--system-message
"You are a helpful assistant in Emacs.
Respond concisely, to the top of your intelligence.
Minimize exposition. Avoid caveats or disclaimers.
Think from first principles, do not parrot common beliefs.
Cite your sources.")
is my setupHave you gotten it to insert code into a clojure-mode buffer? ...I would love to have an nrepl middleware that plugged https://github.com/openai/whisper into a LLM backend. Not only it would seem comfy but also greatly simplify the UX, as I'd imagine it.
I haven’t tried that, I’m quite happy having it in a chatgpt buffer, but that’s because I do a lot more general questions than specifically code generation.
Sounds like you have a specific use case in mind