Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ai-sdk/src/agent-run-store.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('InMemoryAgentRunStore', () => {

// ─── CachedAgentRunStore ───────────────────────────────────

/** Minimal in-process fake of `@rudderjs/cache`'s adapter surface, with TTL capture. */
/** Minimal in-process fake of the `CacheAdapter` surface, with TTL capture. */
function fakeCache() {
const map = new Map<string, unknown>()
const ttls: Record<string, number | undefined> = {}
Expand Down
2 changes: 1 addition & 1 deletion packages/ai-sdk/src/react/agent-run.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import type { ToolCall } from '../types.js'

// The React hook (`useAgentRun`) is a thin wrapper over the pieces here —
// same posture as `@rudderjs/sync`'s `seedShareTypeOnSync` vs `useCollabSeed`.
// same posture as a runtime-agnostic seed helper vs its React hook wrapper.
// The framework ships no React testing harness, so we exhaustively cover the
// transcript reducer, the client-tool batch, and the run/resume driver here.

Expand Down
2 changes: 1 addition & 1 deletion packages/ai-sdk/src/sub-agent-run-store.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('InMemorySubAgentRunStore.load', () => {

// ─── CachedSubAgentRunStore ────────────────────────────────

/** Minimal in-process fake of `@rudderjs/cache`'s adapter surface. */
/** Minimal in-process fake of the `CacheAdapter` surface. */
function fakeCache() {
const map = new Map<string, unknown>()
return {
Expand Down
Loading