()
| 2 | import PipeRunMemory from '../../pipe-run-with-memory'; |
| 3 | |
| 4 | export const Memory = () => { |
| 5 | return ( |
| 6 | <div className="w-full max-w-md"> |
| 7 | <GoHome /> |
| 8 | <h1 className="text-2xl font-light text-gray-800 mb-1 text-center"> |
| 9 | AI Agent Pipes: Memory |
| 10 | </h1> |
| 11 | |
| 12 | <p className="text-muted-foreground text-base font-light mb-20 text-center"> |
| 13 | Run a pipe with memory. |
| 14 | </p> |
| 15 | |
| 16 | <PipeRunMemory /> |
| 17 | </div> |
| 18 | ); |
| 19 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected