aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/core/memory/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/autogpt/core/memory/base.py')
-rw-r--r--autogpts/autogpt/autogpt/core/memory/base.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/autogpts/autogpt/autogpt/core/memory/base.py b/autogpts/autogpt/autogpt/core/memory/base.py
new file mode 100644
index 000000000..74a428406
--- /dev/null
+++ b/autogpts/autogpt/autogpt/core/memory/base.py
@@ -0,0 +1,13 @@
+import abc
+
+
+class Memory(abc.ABC):
+ pass
+
+
+class MemoryItem(abc.ABC):
+ pass
+
+
+class MessageHistory(abc.ABC):
+ pass