()
| 5 | const pipe = new Pipe(pipeSummary()); |
| 6 | |
| 7 | async function main() { |
| 8 | const userMsg = 'Who is an AI Engineer?'; |
| 9 | |
| 10 | const response = await pipe.run({ |
| 11 | messages: [ |
| 12 | { |
| 13 | role: 'user', |
| 14 | content: userMsg, |
| 15 | }, |
| 16 | ], |
| 17 | }); |
| 18 | console.log('response: ', response); |
| 19 | } |
| 20 | |
| 21 | main(); |
no test coverage detected