From 2ee152d1de0f00685ecfbe36c056619c90d31414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Fri, 10 Jan 2025 08:06:41 +0000 Subject: [PATCH] Minor docs improments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- cai/types.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cai/types.py b/cai/types.py index b1913ec5..52a3b872 100644 --- a/cai/types.py +++ b/cai/types.py @@ -31,7 +31,10 @@ class Agent(BaseModel): # pylint: disable=too-few-public-methods class Response(BaseModel): # pylint: disable=too-few-public-methods """ - Represents a response from the CAI. + Represents a response back to the user from the CAI. + + NOTE: This happens within the run() chain, after "Ending turn" + in the CAI. """ messages: List = []