From e03cd05af73929caa10f99f7974331e17ae101af Mon Sep 17 00:00:00 2001 From: ivynya Date: Tue, 26 Dec 2023 18:02:49 -0800 Subject: [PATCH] feat: remove prompt for markdown title --- client/summarize.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/summarize.go b/client/summarize.go index 13a1714..09b4de9 100644 --- a/client/summarize.go +++ b/client/summarize.go @@ -20,7 +20,7 @@ func summarize(c *websocket.Conn, req *internal.Request) (bool, error) { return false, err } - req.Generate.Prompt = "Summarize the following video. Title the summary with the exact video title as a small markdown header. The video information is as follows: " + video.Title + "\n\n" + transcript.String() + "\n\nSummary:" + req.Generate.Prompt = "Summarize the following video: " + video.Title + "\n\n" + transcript.String() + "\n\nSummary:" req.Generate.Context = []int{} complete, err := generate(c, req)