From 6f8efbb1db9cfde9c7140649479251510bd7e0ff Mon Sep 17 00:00:00 2001 From: almazlar Date: Sat, 7 Feb 2026 22:41:23 +0300 Subject: [PATCH] Simplify AI model prompts for image description and translation. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index ae1f9d8..ac91254 100644 --- a/index.html +++ b/index.html @@ -198,7 +198,7 @@ headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ model: "moondream", - prompt: "Describe this image concisely but accurately in English.", + prompt: "Describe this image.", images: [base64Image], stream: false }) @@ -234,7 +234,7 @@ headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ model: "llama3.2", - prompt: `Translate the following description into natural Turkish. Only output the translation: "${rawDescription}"`, + prompt: `Translate the following description into Turkish. "${rawDescription}"`, stream: false }) });