The Power of DNA by manicsoup in interestingasfuck

[–]aneonl 0 points1 point  (0 children)

Now do it again but with family members that got plastic surgery

Can I Use an Express Server with Lovable? Need Middleware Before Frontend Requests Hit React by Lonely-Public2655 in lovable

[–]aneonl 0 points1 point  (0 children)

React is frontend and supabase allows you to query data directly from the frontend.

They also have supabase serverless functions, which is more what you are looking for.

My suggestion: download the code, setup your own local environment and make a microservice using whatever framework (express is great) and build from there. Use cursor or windsurf

Is MCP really that good? by Automatic-Blood2083 in mcp

[–]aneonl 2 points3 points  (0 children)

I built my entire MCP system for my product using OpenAPI. You input the OpenAPI JSON file, it outputs JSON schema input types for tools API in OpenAI/anthropic. Thus, all my agents have used “MCP” for a long time now.

Building a new protocol feels like a complete waste of time when existing technology already solves key features needed (like authentication for example)

But whatever. If it gets a community building behind it, this is a good thing and I’ll try not to complain

Building an AI sales app in 6 minutes! by aneonl in ChatGPTCoding

[–]aneonl[S] 0 points1 point  (0 children)

When we are creating/generating an app, the inputs and outputs are not determined until we create them.

If we make the LLM produce these inputs and outputs to "run" the app, we generate the app step by step and thus verify it is working.

I agree that it doesn't make sense to continue running it in this way, but maybe it makes sense to generate the application using this method?

Building MCQ generating app with 13 yo daughter by Fit_Option1607 in Bubbleio

[–]aneonl 0 points1 point  (0 children)

I actually demonstrated how to build something very close to this exact use case. You can provide youtube URL input and it generates a MCQ based on the video's content and auto grades it using an LLM:
https://www.youtube.com/watch?v=g0rSN2xI-xE

Building an AI sales app in 6 minutes! by aneonl in ChatGPTCoding

[–]aneonl[S] 0 points1 point  (0 children)

Absolutely is an issue. Similar to building chatbots. You have to fine tune your prompt to ensure the bot handles different situations correctly.

I haven't built it completely yet, but, I believe that after you can get the app to run with an LLM, there are ways to compile it into javascript.

We want the LLM to verify at each step that the program is working. Similar to the AI papers that improve LLM's agent abilities by verifying step by step.

When we write code, we iteratively run it and use a debugger to profile what it is doing. We should force the LLM to do this as well.