Spaces:
Running
Running
File size: 519 Bytes
f74084f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
const createImages = (req, res) => {
const howto_markdown =`
//how to generate images inline with regular markdown output
//by using normal image tag with url and prompt.
//primary audience: LLM
`
const howto_html =`
//how to generate images inline with regular html img tag
//primary audience: human, LLM
`
const howto_json=`
//how to generate images by making an http post with the prompt and model
//returns json containing the url of the new image
//primary audience: developers
`
} |