From dc6b8f8b62dfdc9912e505c993dd5c21c40671fc Mon Sep 17 00:00:00 2001 From: Raphael MANSUY Date: Mon, 26 Aug 2024 12:52:32 +0800 Subject: [PATCH] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ea68370..812f591 100644 --- a/README.md +++ b/README.md @@ -59,12 +59,17 @@ qllm-cli is a command-line interface that leverages qllm-lib to provide easy acc qllm ask "Write a 50-word product description for a smart home security camera with night vision and two-way audio." # Use a specific model for market analysis -qllm ask --model gpt-4 "Analyze the potential market impact of electric vehicles in the next 5 years. Provide 3 key points." +qllm ask --model gpt-4o-mini --provider openai "Analyze the potential market impact of electric vehicles in the next 5 years. Provide 3 key points." # Stream a response for real-time content generation -qllm ask --stream "Write a short blog post about the benefits of remote work." +qllm ask --stream --model gemma2:2b --provider ollama "Write a short blog post about the benefits of remote work." ``` +# Describe a picture +qllm ask --stream --model llava:latest --provider ollama "Describe the picture" -i "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Kowloon_Waterfront%2C_Hong_Kong%2C_2013-08-09%2C_DD_05.jpg/640px-Kowloon_Waterfront%2C_Hong_Kong%2C_2013-08-09%2C_DD_05.jpg" +``` + + These examples show how qllm-cli can be used for various business tasks, from content creation to market analysis. For a complete list of commands and options, refer to the [qllm-cli README](./packages/qllm-cli/README.md).