@squidcloud/client
    Preparing search index...

    Interface AiAgentMemoryOptions

    Options for AI agent memory management.

    interface AiAgentMemoryOptions {
        memoryId?: string;
        memoryMode: "none" | "read-only" | "read-write";
    }
    Index

    Properties

    memoryId?: string

    A unique id for managing the memory

    memoryMode: "none" | "read-only" | "read-write"

    The memory mode:

    • 'none': No memory is used, the agent does not remember past interactions.
    • 'read-only': The agent can read from memory but cannot write to it.
    • 'read-write': The agent can both read from and write to memory.