#ai #llm #transhumanism #poetry #art
# [[Epistemic status]]
#shower-thought #to-digest
# Related
- [[Automatic differentiation]]
- [[en.wikipedia.org - Automatic Differentiation - Wikipedia]]
- [[Multimodal]]
- [[Algebra]]
- [[Multimodal second brain exploration]]
- [[GPT3]]
# TODO
> [!TODO] TODO
# Augmenting your brain with AI multimodality - Example2
Write a poem about the beauty of automatic differentiation

The beauty of automatic differentiation
Is a sight to behold,
It takes the tediousness of derivatives
And makes it much more bold.

The power of the chain rule
Can be seen in its light,
It takes the complex and makes it simple
In a way that's quite a sight.

The derivatives of derivatives
Can be found with ease,
No more tedious calculations
To put you at your ease.

## Under the hood
```js
// GET https://lexica.art/api/v1/search?q=apples
const lexicaBeforeAfter = async (tags) => {
document.body.style.cursor = "wait";
const selection = window.getSelection().toString();
const url = `https://lexica.art/api/v1/search?q=${encodeURIComponent(selection)}&n=2`;
const response = await fetch(url).then(response => response.json());
document.body.style.cursor = "default";
console.log(response);
// add 1 image before and after selection
return `![${response.images[0].prompt}](${response.images[0].src})\n\n${selection}\n\n![${response.images[1].prompt}](${response.images[1].src})`;
}
module.exports = lexicaBeforeAfter;
```