aboutsummaryrefslogtreecommitdiffstats
path: root/packages/workers/openai.ts
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-15 19:03:09 +0000
committerMohamedBassem <me@mbassem.com>2024-02-15 19:03:45 +0000
commite4f4270790936db81364bab057d3cdb4bbdaa31e (patch)
tree1e28567a8268f3342fb00f7a4ed417940fe5ab89 /packages/workers/openai.ts
parent97d18d7ac3bc6ab4f40618e74f021ee63a4cf7b6 (diff)
downloadkarakeep-e4f4270790936db81364bab057d3cdb4bbdaa31e.tar.zst
fix: Attempt to improve the openai prompt a bit
Diffstat (limited to '')
-rw-r--r--packages/workers/openai.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/workers/openai.ts b/packages/workers/openai.ts
index 1e353092..f48efdf5 100644
--- a/packages/workers/openai.ts
+++ b/packages/workers/openai.ts
@@ -44,8 +44,12 @@ export class OpenAiWorker {
function buildPrompt(url: string, description: string) {
return `
-You are a bot who given an article, extracts relevant "hashtags" out of them.
-You must respond in JSON with the key "tags" and the value is list of tags.
+
+I'm building a read-it-later app and I need your help with automatic tagging.
+Please analyze the following text and suggest relevant tags that describe its key themes, topics, and main ideas.
+Aim for a variety of tags, including broad categories, specific keywords, and potential sub-genres. If it's a famous website
+you may also include a tag for the website. Tags should be lowercases and don't contain spaces. If the tag is not generic enough, don't
+include it. Aim for 3-5 tags. You must respond in JSON with the key "tags" and the value is list of tags.
----
URL: ${url}
Description: ${description}