MCPcopy Create free account
hub / github.com/QuantiaAI/helm-agents / recent

Method recent

apps/api/src/memory/memory.controller.ts:27–32  ·  view source on GitHub ↗
(@CurrentUser() user: AuthUser, @Query("ticker") ticker?: string)

Source from the content-addressed store, hash-verified

25 /** This user's recent resolved memory (+ pending) for the reflection feature. */
26 @Get()
27 recent(@CurrentUser() user: AuthUser, @Query("ticker") ticker?: string): MemoryResponse {
28 return {
29 recent: this.store.memory.recent(user.id, ticker, 50) as MemoryResponse["recent"],
30 pending: this.store.memory.pending(user.id, ticker) as MemoryResponse["pending"],
31 };
32 }
33
34 /** Resolve pending decisions for a ticker (fetch returns + alpha, LLM reflect). */
35 @Post()

Callers

nothing calls this directly

Calls 1

pendingMethod · 0.45

Tested by

no test coverage detected