diff options
Diffstat (limited to 'models/db.go')
-rw-r--r-- | models/db.go | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/models/db.go b/models/db.go index e798cdc..5f49003 100644 --- a/models/db.go +++ b/models/db.go @@ -21,7 +21,16 @@ func (c Chat) ToHistory() ([]MessagesStory, error) { return resp, nil } +/* +memories should have two key system +to be able to store different perspectives +agent -> topic -> data +agent is somewhat similar to a char +*/ type Memory struct { - Topic string `db:"topic" json:"topic"` - Data string `db:"data" json:"data"` + Agent string `db:"agent" json:"agent"` + Topic string `db:"topic" json:"topic"` + Mind string `db:"mind" json:"mind"` + CreatedAt time.Time `db:"created_at" json:"created_at"` + UpdatedAt time.Time `db:"updated_at" json:"updated_at"` } |