feat: add memory-json importer, tweak observation content

This commit is contained in:
phernandez
2025-02-04 10:59:28 -06:00
parent 91b1872eb7
commit 3484e26631
16 changed files with 337 additions and 211 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ def parse_observation(token: Token) -> Dict[str, Any]:
return {
'category': category,
'content': ' '.join(content_parts).strip(),
'content': content,
'tags': list(tags) if tags else None,
'context': context
}