diff --git a/packages/testing/index.ts b/packages/testing/index.ts index e69de29b..25ec8c70 100644 --- a/packages/testing/index.ts +++ b/packages/testing/index.ts @@ -0,0 +1,20 @@ +// import {Pipe} from '@baseai/core'; +// import pipeSummary from '../baseai/pipes/summary'; + +// const pipe = new Pipe(pipeSummary()); + +// async function main() { +// const userMsg = 'Who is an AI Engineer?'; + +// const response = await pipe.run({ +// messages: [ +// { +// role: 'user', +// content: userMsg, +// }, +// ], +// }); +// console.log('response: ', response); +// } + +// main();