I have developed a toy spreadsheet, where you can implement your formulas in English, which are then translated into <code>javascript</code> thanks to an LLM. For instance, you can write: <code>sum of the squared values</code> and the LLM will translate this description into: <code>getValuesFromReferences([‘A1’, ‘A2’, ‘A3’]).map(Number).reduce((a, b) => a + b * b, 0)</code>. I use <code>LM Studio</code> and <code>codestral</code>, but I’m pretty sure you can replace <code>LM Studio</code> by <code>Ollama</code> or your favorite LLM provider. Comments