FlintAutoAiMemoryStore constructor

FlintAutoAiMemoryStore({
  1. AiMemoryStore? primary,
  2. InMemoryAiMemoryStore? fallback,
})

Implementation

FlintAutoAiMemoryStore({
  AiMemoryStore? primary,
  InMemoryAiMemoryStore? fallback,
})  : primary = primary ?? FlintDbAiMemoryStore(),
      fallback = fallback ?? InMemoryAiMemoryStore();