MCPcopy Create free account
hub / github.com/vercel/examples / get_run_payload

Function get_run_payload

python/vibe-coding-ide/backend/src/run_store.py:30–33  ·  view source on GitHub ↗

Fetch the stored payload for a run id.

(run_id: str)

Source from the content-addressed store, hash-verified

28
29
30async def get_run_payload(run_id: str) -> dict[str, Any] | None:
31 """Fetch the stored payload for a run id."""
32 val = await cache.get(_cache_key(run_id))
33 return dict(val) if isinstance(val, dict) else None
34
35
36async def update_run_project(run_id: str, project: dict[str, str]) -> None:

Callers 2

run_eventsFunction · 0.90
resume_runFunction · 0.90

Calls 2

_cache_keyFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected