Transitioned to office SDK

This commit is contained in:
Tevon Strand-Brown
2024-12-12 10:54:50 -08:00
parent df5a75d919
commit 144fc83be7
2 changed files with 140 additions and 104 deletions

5
src/helpers.ts Normal file
View File

@@ -0,0 +1,5 @@
export const formatToolCall = (obj: any, isError: boolean = false) => {
return {
content: [{ type: "text", text: JSON.stringify(obj, null, 2), isError }],
};
}