cloudflare workers应用系列之:AI 生成图片 Text to Image App
简单几步用cloudflare 搭建一个ai生成图片的api服务
cloudflare workers应用系列之6:AI 生成图片 Text to Image App

如图

单一文件式的见图:

简单几步用cloudflare 搭建一个ai生成图片的api服务



<html> <head> <meta charset="utf-8"> <style> .typing { width: 100em; height: 1.25em; border-right: 1px solid transparent; animation: typing 3.5s steps(200, end); font-family: Consolas, Monaco; word-break: break-all; overflow: hidden; } /* 打印效果 */ @keyframes typing { from { width: 0; } to { width: 100em; } } </style> </head> <body> <p class="typing"> Sure, please provide me with the text you want me to summarize below. I will then summarize it in a concise and accurate manner. **Please provide me with the text you want me to summarize:** </p> </body> </html>