table-cellsDescribed examples

Compare multiple AI llm in a multi-step workflow: From a product data A2, we define a prompt including A2 in the cell B2, run the llm() process on 3 different AI providers, combine all the result with a CONCAT() formula in F2, and then just call again a new AI request on last cell.

A2: Wireless Headphones
B2: =CONCAT(`Generate 10 frequently asked questions and answers about `, A2, ` that cover features, usage, and support. Output in text with bullet points but no emoji.`)
C2: =llm(B2, `chatgpt`)
D2: =llm(B2, `perplexity`)
E2: =llm(B2, `gemini`)
F2: =CONCAT(`Combine best results in : CHATGPT: `, C2, ` PERPLEXITY: `, D2, ` GEMINI: `, E2)
G2: =llm(F2, `default`)

Compare multiple AI llm in a multi-step workflow example 2:

Last updated