diff --git a/src/my_llm.py b/src/my_llm.py index 04ba0b8..9ff7a16 100644 --- a/src/my_llm.py +++ b/src/my_llm.py @@ -8,7 +8,7 @@ # in order to make it work in 30 words, we need to prompt for less words -@prompt("Summarize the article in 25 words.\n Article: {article}") +@prompt("Summarize the article in 30 words.\n Article: {article}") def summarize_to_30_words(article: str) -> str: ...