Ingest a conversation as session chunks through the full pipeline (RLM-1g).
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/memory/ingest/conversation" \ -H "Content-Type: application/json" \ -d '{}'null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Ingest Content
Default ingest: persist and enqueue background processing (non-local modes). Requires authentication and operates on user-scoped data. Uses the full SmartMemory ingestion pipeline with proper tenant isolation. Set mode=async to submit via EventBusTransport for background processing.
Ingest Document
Ingest a document from a public URL. Creates a parent document node (INDEXED) and chunk nodes (FULL, embedded) linked via PART_OF edges. Deduplicates by source URL + content hash. Security: only http:// and https:// URLs are accepted. Local file paths and other URI schemes (file://, gopher://, ftp://, etc.) are rejected to prevent SSRF/LFI attacks. Local-file ingestion is exposed via the CLI (CORE-STRUCT-CLI-1).