Added timeout and limit to script entries

This commit is contained in:
Niels Geens
2024-11-13 17:48:39 +01:00
parent 65478e0b17
commit 834ce12e8f
21 changed files with 262 additions and 141 deletions

View File

@@ -11,14 +11,19 @@ class ReasoningEntry(Entry):
_content: The reasoning text
"""
def __init__(self, content: str, id: str, timestamp: datetime):
def __init__(
self,
id: str,
timestamp: datetime,
content: str,
):
"""
Initialize a new reasoning entry.
Args:
content: The reasoning text
id: Unique identifier for this entry
timestamp: Creation timestamp for this entry
content: The reasoning text
"""
super().__init__(id, timestamp)
self._content = content