Spaces:
Running
Running
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 | |
` | |
} |