diff options
| author | Dhravya <[email protected]> | 2024-04-13 22:19:48 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-04-13 22:19:48 -0700 |
| commit | d5b130f9169d976545241947e573b0799b2fbded (patch) | |
| tree | fbc4b6a5fc0070b23787feca140e98cd568f48fb | |
| parent | fixed notes vectorize (diff) | |
| download | supermemory-d5b130f9169d976545241947e573b0799b2fbded.tar.xz supermemory-d5b130f9169d976545241947e573b0799b2fbded.zip | |
changes to the quuq
| -rw-r--r-- | apps/cf-ai-backend/src/routes/queue.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/cf-ai-backend/src/routes/queue.ts b/apps/cf-ai-backend/src/routes/queue.ts index 9dcef525..89a00c4b 100644 --- a/apps/cf-ai-backend/src/routes/queue.ts +++ b/apps/cf-ai-backend/src/routes/queue.ts @@ -37,7 +37,7 @@ export const queue = async (batch: MessageBatch, env: Env): Promise<void> => { const collectedDocsUUIDs: { document: { pageContent: string; - metadata: { title: string; description: string; space: string; url: string; user: string }; + metadata: { title: string; description: string; space?: string; url: string; user: string }; id: string; }; }[] = []; @@ -57,7 +57,6 @@ export const queue = async (batch: MessageBatch, env: Env): Promise<void> => { metadata: { title: 'Twitter Bookmark', description: '', - space: 'Bookmarked Tweets', url: message.postUrl, user: limits.user, }, |