diff --git a/cell summary.py b/cell summary.py index 77ec7e5..3357069 100644 --- a/cell summary.py +++ b/cell summary.py @@ -18,7 +18,7 @@ def summarize_text(text): """Send text to Ollama for summarization""" payload = { "model": "mistral:latest", # Change model if needed - "prompt": f"Summarize the following text:\n\n{text}", + "prompt": f"Hãy nêu những ý chính trong nội dung sau:\n\n{text}", "stream": False } response = requests.post(OLLAMA_URL, json=payload)