packages feed

A-gent 0.11.0.15 → 0.11.0.16

raw patch · 4 files changed

+12/−2 lines, 4 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Agent.LLM.Action: data File
+ Agent.LLM.Action: data FilePaths
+ Agent.LLM.Action: data Root
+ Agent.LLM.Message: data AbsoluteFilePath
+ Agent.LLM.Message: data Files
+ Agent.LLM.Message: data Filter

Files

A-gent.cabal view
@@ -9,7 +9,7 @@ build-type: Simple                                                name: A-gent-version: 0.11.0.15+version: 0.11.0.16  synopsis: Polite & well educated LLM agent with excellent manners that always behaves well description: Polite and well educated LLM agent with excellent manners that always behaves well
CHANGELOG.md view
@@ -1,8 +1,13 @@ # Revision history for Λ-gent +## 0.11.0.16 -- 2026-05-14++* The Action and Message modules need to expose used types from the internal LLM+  module as well.+ ## 0.11.0.15 -- 2026-05-14 -* Internal LLM types MUST be exposed by LLM module+* Internal LLM types MUST be exposed by LLM module.  ## 0.11.0.14 -- 2026-05-14 
src/Agent/LLM/Action.hs view
@@ -16,6 +16,8 @@ module Agent.LLM.Action   ( Action   , TextToFile+    -- * LLM (Internal)+  , File, FilePaths, Root     -- * Methods   , none   , exit
src/Agent/LLM/Message.hs view
@@ -15,6 +15,9 @@  module Agent.LLM.Message   ( Message(..)+  , AbsoluteFilePath+  , Files+  , Filter   ) where