Hi.
I implenented an end-to-end description-to-code application generator. User comes in and creates the project description. I validate if it contains all the information I need and if so, I start the automatic development process. First I build list of tasks and then I ask LLM (gpt4o) to generate code diff for each task. I support retries and tasks rethinking on errors. It works just fine for 90% of cases.
Yet, diff generation is something that I’d like to offload to some external service that is best at it. Like Cursor.
Is it possible to use Cursor via API?