Guide-ify is an app submission for the Cloudflare AI Challenge. It makes a visual guide for a given life skill that a user would like to learn more about:
The app does this with a 3-step process:
- Make a request to research more about the given skill.
- Summarize these findings.
- Create a corresponding visual aid for each step in the summary.
These steps each correspond to a different Cloudflare Worker and AI model. You can preview the app here.
This app is made with sveltekit and its installation steps are similar to any other sveltekit project:
npm install
npm run dev
By default, this project is making requests against Cloudflare Workers that I've created (eg - all of the urls that end in mralexlau.workers.dev
). You're welcome to use those, however you can also create your own Workers with custom code if you'd like. See the workers documentation for more details.
By default, this app is configured to be deployed to Cloudflare Pages. If you'd like to deploy your own fork of this app, please follow these directions.
Once you've completed these steps, you can deploy your application with npm run deploy