From c5c6fe0ac0b07921dec2e09cc60c6d35e839aa3c Mon Sep 17 00:00:00 2001 From: Ashley Johnson <61059402+PapaRascal2020@users.noreply.github.com> Date: Sat, 21 Sep 2024 16:31:45 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ee2d5f7..9b30221 100644 --- a/README.md +++ b/README.md @@ -342,23 +342,23 @@ Utilities are quick ways of performing some actions using AI. The functions and ```PHP // Summarises the content passed. Good for blurbs -$sidekick->utilities()->summarise() +$sidekick->utilities()->summarise(); // Extracts a number of keywords from a given string and returns a string of keywords (comma separated) -$sidekick->utilities()->extractKeywords() +$sidekick->utilities()->extractKeywords(); // Translates the given text to the language specified -$sidekick->utilities()->translateText() +$sidekick->utilities()->translateText(); // Generates content from a short description of what it should be about -$sidekick->utilities()->generateContent() +$sidekick->utilities()->generateContent(); // [OpenAI ONLY] Moderates content and returns a boolean of whether the content is flagged or not -$sidekick->utilities()->isContentFlagged() +$sidekick->utilities()->isContentFlagged(); // [OpenAI ONLY] this method can store images and audio created by the AI. -$sidekick->utilities()->store() +$sidekick->utilities()->store(); ```