Added timeout and limit to script entries
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user