Skip to main content

Documentation Index

Fetch the complete documentation index at: https://dev.docs.inworld.ai/llms.txt

Use this file to discover all available pages before exploring further.

Character Reference Overview > Inworld Node Memory Retrieval Class: UInworldNode_MemoryRetrieval | Inherits from: UInworldNode_Custom | Plugin: InworldCharacter A node that retrieves a memory summary based on a text query. Given a query and a memory structure, this node returns a text summary combining recent flash memory entries with semantically similar long-term memory entries. Flash memory entries are always included up to the configured limit; long-term entries are ranked by semantic similarity to the query using a text embedder. Inworld Node Memory Retrieval Input Types:
  • FInworldData_Text (Query — the text to search memory for)
  • FInworldData_Struct (FInworldMemory — the memory structure containing flash and long-term entries)
Output Types:
  • FInworldData_Text (A text summary of relevant and recent memory)

Properties

PropertyTypeDefaultDescription
FlashMemorySizeint325Number of recent flash memory entries to always include in the summary
EmbedderComponentIdFString"Default"ID of the text embedder primitive to use for semantic search
RetrievalConfigFInworldRetrievalConfigControls top-K results, similarity thresholds, and source filtering for long-term memory lookup