AI Coding for You
In general, what you do in Qreli is grab some interactive controls and place them on a Step to set up your interface with the user.
Then you do something with these: get some input, compute something, call some APIs to pull some data, mix it up, send the results via API somewhere else, show some output to the user.
The hardest part before AI was that you had to think through how to mix the data.
Now it's easy.
Here are the steps:
- Start with some static data — you would typically enter the contents of some variables observed during testing. For example, let's calculate the Fibonacci of 7.
- Ask AI to generate the code and it will do so:
- Test the results to make sure they match what you were looking for:
- If the results are not what you expected, go back and ask AI to redo: in general, you want to be very specific in what you ask.
- Once the results are what you expected, replace the static data with a variable so at runtime Qreli will run the generated code using the contents of that variable at that time.
Please also note that it is important to be specific about what kind of input you are providing, so the calculations will be done correctly: Number, String, or object (JSON).
Be specific about what you want AI to do
As food for thought, you can pass to AI complex objects and have it do something about them, e.g. below we pass in a Wordle board with the current row the user is working on, the word they guessed, and the correct word.
We can then ask AI very specific requests so it could write the code to solve the hard part super easy: