From 1d4004172bb53a1548e20036c096a7e249b0d288 Mon Sep 17 00:00:00 2001 From: Ahmad Awais Date: Sun, 29 Sep 2024 18:10:45 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20testing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/testing/index.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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();