From a22ac4039eb22c9d5a1e06657fcd63c8e6a10a8a Mon Sep 17 00:00:00 2001 From: Lucas Carlson Date: Thu, 1 Jan 2026 11:07:04 -0800 Subject: [PATCH] docs: simplify CLI examples in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8d3d4de..7abb0f7 100644 --- a/README.md +++ b/README.md @@ -36,15 +36,15 @@ Classify text instantly with pre-trained models—no coding required: ```bash # Detect spam -classifier classify "You won a free iPhone!" -r sms-spam-filter +classifier -r sms-spam-filter "You won a free iPhone" # => spam # Analyze sentiment -classifier classify "This movie was absolutely amazing!" -r imdb-sentiment +classifier -r imdb-sentiment "This movie was absolutely amazing" # => positive # Detect emotions -classifier classify "I'm so happy today!" -r emotion-detection +classifier -r emotion-detection "I am so happy today" # => joy # List all available models @@ -59,7 +59,7 @@ classifier train positive reviews/good/*.txt classifier train negative reviews/bad/*.txt # Classify new text -classifier classify "Great product, highly recommend" +classifier "Great product, highly recommend" # => positive ```