Skip to content

Commit

Permalink
fixed the AI prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhravya committed Apr 14, 2024
1 parent d099d4b commit 43f18a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cf-ai-backend/src/routes/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ export async function POST(request: Request, _: CloudflareVectorizeStore, embedd
// });

const prompt =
`You are an agent that summarizes a page based on the query. don't say 'based on the context'. I expect you to be like a 'Second Brain'. you will be provided with the context (old saved posts) and questions. Answer accordingly. Answer in markdown format` +
`Context:\n${preparedContext ?? 'No context'}\n\nQuestion: ${query}\nAnswer:`;
`You are supermemory - an agent that answers a question based on the context provided. don't say 'based on the context'. Be very concise and to the point. Give short responses. I expect you to be like a 'Second Brain'. you will be provided with the context (old saved posts) and questions. Answer accordingly. Answer in markdown format` +
`Context:\n${preparedContext == '' ? "No context, just introduce yourself and say something like 'I don't know, but you can save things from the sidebar on the right and then query me'" : preparedContext + `Question: ${query}\nAnswer:`}\n\n`;

// const output = await chat.sendMessageStream(prompt);

Expand Down

0 comments on commit 43f18a1

Please sign in to comment.