actrone-memory
    Preparing search index...

    Function inngestAgentKitMemory

    • Inngest AgentKit (@inngest/agent-kit): createAgent({ system, model }) takes a system string (or function). withSystem(baseSystem, query) returns the system to give the agent for the turn, the developer's base system with governed memory appended (or just the memory when there is no base), and remember persists the turn. Structural, so @inngest/agent-kit stays an optional peer dependency.

      Parameters

      Returns {
          withSystem: (
              baseSystem: string,
              query: string,
              tokenBudget?: number,
          ) => Promise<string>;
          remember: (
              userMessage: string,
              assistantMessage: string,
          ) => Promise<string>;
      }