diff --git a/A-gent.cabal b/A-gent.cabal
--- a/A-gent.cabal
+++ b/A-gent.cabal
@@ -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
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
 
diff --git a/src/Agent/LLM/Action.hs b/src/Agent/LLM/Action.hs
--- a/src/Agent/LLM/Action.hs
+++ b/src/Agent/LLM/Action.hs
@@ -16,6 +16,8 @@
 module Agent.LLM.Action
   ( Action
   , TextToFile
+    -- * LLM (Internal)
+  , File, FilePaths, Root
     -- * Methods
   , none
   , exit
diff --git a/src/Agent/LLM/Message.hs b/src/Agent/LLM/Message.hs
--- a/src/Agent/LLM/Message.hs
+++ b/src/Agent/LLM/Message.hs
@@ -15,6 +15,9 @@
 
 module Agent.LLM.Message
   ( Message(..)
+  , AbsoluteFilePath
+  , Files
+  , Filter
   )
 where
 
