From db70281d678a2861631fdc88315649faffe762c9 Mon Sep 17 00:00:00 2001 From: Marios Antonoudiou Date: Tue, 17 Jun 2025 11:09:32 +0300 Subject: [PATCH] Small prompt update. --- server/utils/create-content.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/utils/create-content.ts b/server/utils/create-content.ts index 6365dcc..2a55797 100644 --- a/server/utils/create-content.ts +++ b/server/utils/create-content.ts @@ -168,6 +168,8 @@ export const createActivityContent = async ({ Convert time to hours or minutes, whatever's closer. Convert distance to larger units when appropriate, keep in mind we don't need much accuracy. + In the end of the description, add "${promo}" translated to my language. + The activity data in json format from strava: ${stringifyActivity(currentActivity)} @@ -215,7 +217,7 @@ export const createActivityContent = async ({ const stravaRequestBody = { name: responseObject!.title, - description: [responseObject!.description, promo].join("\n"), + description: responseObject!.description, }; return [aiError || parseError, stravaRequestBody] as const;