diff --git a/README.md b/README.md index 1a781f1..49bbc10 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,9 @@ models = chatbot.get_available_llm_models() # Get image link. # Work only for model "CohereForAI/c4ai-command-r-plus" -query_result = chatbot.query("Draw a cat.") -print(query_result.get_final_text()) -print(query_result.get_image_link()) +chat_result = chatbot.chat("Draw a cat.") +print(chat_result.get_final_text()) +print(chat_result.get_image_link()) # Switch model with given index chatbot.switch_llm(0) # Switch to the first model