diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/components/views/add-memory/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/components/views/add-memory/index.tsx b/apps/web/components/views/add-memory/index.tsx index 05399f21..f7940bce 100644 --- a/apps/web/components/views/add-memory/index.tsx +++ b/apps/web/components/views/add-memory/index.tsx @@ -420,6 +420,9 @@ export function AddMemoryView({ const formData = new FormData() formData.append("file", file) formData.append("containerTags", JSON.stringify([project])) + formData.append("metadata", JSON.stringify({ + sm_source: "consumer", + })) const response = await fetch( `${process.env.NEXT_PUBLIC_BACKEND_URL}/v3/documents/file`, |