Erik Terpstra
Erik Terpstra
It seems that in Elxir doctests are based on iex? It might be good to check if we want to have doctests for Gleam and how they relate to its...
Sounds good, thank you. I tried to go ahead and use pandoc to convert the TeX file to HTML, but it couldn't process the TeX file as-is. Not sure if...
Also see my conversion attempt here: https://github.com/guidoism/tex-oberon/pull/4
> you would be open to a PR that prompts the user for additional buffers to include as context for the LLM You might want to check [aider](https://github.com/paul-gauthier/aider) for inspiration...
Last week I played around with this [nvim integration for aider](https://github.com/joshuavial/aider.nvim). My first impression is that aider doesn't integrate very well in nvim, but I liked the feature of this...
> I have added the feature to include the content of all open buffers. Oooh nice, that looks incredibly useful. Definitely gonna check it out :+1: > We focus on...
@frankroeder , it works great. Very useful feature. I noticed that I had to change the last part of the prompt to: ``` Please finish the code above carefully and...
Sure: ```lua hooks = { --PrtProofReader ProofReader = function(prt, params) local chat_system_prompt = [[ I want you to act as a proofreader. I will provide you with texts and I...
> I am not sure if this worked at all. It definitely works, the markdown response of this prompt is quite elaborate. I use it with Anthropic's Claude 3.5 model....
I found some additional information while trying to understand what's happening. In my code fragment above I have this function call: ```lua prt.cmd.ChatNew(params, agent.model, '') ``` However, that doesn't make...