Transitioned to office SDK

This commit is contained in:
Tevon Strand-Brown
2024-12-12 10:54:50 -08:00
parent 50e8dc3365
commit 09c04edae1
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 }],
};
}