(agentUrl: string)
| 38 | * Source data is the exact format catalog from the live creative.adcontextprotocol.org agent. |
| 39 | */ |
| 40 | export function buildReferenceFormats(agentUrl: string): Format[] { |
| 41 | const formats = structuredClone(referenceFormatsData) as Format[]; |
| 42 | for (const f of formats) { |
| 43 | const fid = f.format_id as { agent_url: string; id: string }; |
| 44 | fid.agent_url = agentUrl; |
| 45 | } |
| 46 | return formats; |
| 47 | } |
| 48 | |
| 49 | // ── Format filtering helpers ──────────────────────────────────────── |
| 50 |
no outgoing calls
no test coverage detected