Not Another AI Add-On

Adon AI’s Prompt Engine works behind the scenes to make AI easy.

We automatically optimize your prompts by adding multi modal context, use case specific ontology and tuned custom functions, all in Google Sheets.

7 Custom Functions

Write, Research, Summarize, Tag, Analyze Sentiment, Edit, Extract.

Save hours of manual work and unlock new insight with custom functions designed to streamline complex calculations and data analysis.

  • This function generates text based on the provided prompt and temperature setting. The prompt is your input text that guides the AI's response. Be specific and clear in your instructions. The temperature controls the randomness of the output, where 0 is more deterministic and 1 is more creative. The default temperature is 0.5.

    Example: =GPT("Tell me a story about a brave knight", 0.7)

  • This function generates text based on the provided prompt, temperature setting, and whether to include citations. The prompt should be your research question or topic. Be specific to get more relevant results. The temperature controls the output's diversity, and the citation parameter (true/false) determines whether to include citations in the generated content.

    Example: =research("Explain quantum physics", 0.7, true)

  • This function condenses a long piece of text into a shorter summary. The input text can be multiple paragraphs or even a full article.

    Example: =summarize("Your long text here")

    Example: =tags("Your text here", "fruits, veggies")

  • This function applies user-provided tags to the given text. The text can be a sentence, paragraph, or longer piece of content. The tags should be a comma-separated list of keywords you want to apply to the text.

    Example: =tags("Your text here", "technology, science, future")

  • This function analyzes the sentiment of the text based on user-provided sentiments. The text can be a sentence, paragraph, or longer piece of content. The sentiments parameter is optional and defaults to "positive, negative" if not specified. You can provide a comma-separated list of sentiments to analyze for.

    Example: =sentiment("Your text here", "happy, sad, angry")

  • This function makes changes to the text based on a user-provided task. The text can be a sentence, paragraph, or longer piece of content. The task parameter is optional and defaults to "fix spelling and grammar" if not specified. You can provide any editing instruction as the task.

    Example: =edit("Your text here", "make it funnier")

  • This function pulls specific information from the text based on user-provided criteria. The text can be a sentence, paragraph, or longer piece of content. The extraction parameter specifies the type of information to extract (e.g., "name", "date", "location").

    Example: =extract("john.smith@gmail.com", "name")