Versions in this module Expand all Collapse all v0 v0.4.5 Jun 23, 2026 v0.4.4 Jun 11, 2026 Changes in this version + type Manager struct + func New(ctx context.Context, pool pg.PoolConn, opts ...Opt) (*Manager, error) + func (m *Manager) CreateMemory(ctx context.Context, insert schema.MemoryInsert) (_ *schema.Memory, err error) + func (m *Manager) GetMemory(ctx context.Context, session uuid.UUID, key string) (_ *schema.Memory, err error) + func (m *Manager) ListMemory(ctx context.Context, req schema.MemoryListRequest) (_ *schema.MemoryList, err error) + func (m *Manager) ListPrompts(ctx context.Context) ([]llm.Prompt, error) + func (m *Manager) ListResources(ctx context.Context) ([]llm.Resource, error) + func (m *Manager) ListTools(ctx context.Context) ([]llm.Tool, error) + func (m *Manager) Run(ctx context.Context) error + type Opt func(*opt) error + func WithSchemas(memory, llm, auth string) Opt + func WithTracer(tracer trace.Tracer) Opt