To-Do List Manager
Incredible can manage stateful applications, where actions mutate state. With this you can build entirely new software and applications from the ground up using these models. Not just connecting it to an already existing system. A simple example of a stateful application would be a to-do list manager.Example Scenario
- User: “Add a task to review quarterly reports by Friday.”
-
AI: “You don’t have a to-do list yet. Do you want me to create one? Here are 3 suggestions:
- Work Tasks
- Personal Errands
- Long-term Projects”
-
User: “Yes, create work tasks.”
→ AI calls
create_new_todo_list
-
AI: “Okay, I created a list called ‘Work Tasks’. Now I’ll add your item.”
→ AI calls
add_todo_item
withtitle=Review quarterly reports
,due_date=Friday
- AI: “Done! You now have 1 todo in your Work Tasks list.”