We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a88525f commit bf225f2Copy full SHA for bf225f2
1 file changed
apps/web/components/views/add-memory/index.tsx
@@ -420,6 +420,9 @@ export function AddMemoryView({
420
const formData = new FormData()
421
formData.append("file", file)
422
formData.append("containerTags", JSON.stringify([project]))
423
+ formData.append("metadata", JSON.stringify({
424
+ sm_source: "consumer",
425
+ }))
426
427
const response = await fetch(
428
`${process.env.NEXT_PUBLIC_BACKEND_URL}/v3/documents/file`,
0 commit comments