The idea for app came since I wanted to build a unique gift for my niece because she gets excited for her birthday (which Im going to miss this year).
The web app has a simple countdown (in html and JS) but more importantly, there is an AI agent that will answer some specific questions and know her preferences.
The questions from app are sent via web hook to N8N which has pulls preferences file (about her likes, dislikes, personality) from postgre and AI Agent that will answer questions/respond. The current status is stored back in postgre (especially about status of cat and universe happenings) before responding back.
CREATE TABLE fifi_world_context (
id TEXT PRIMARY KEY, -- e.g., 'agent_fifi'
cat_location TEXT, -- e.g., "Bubble Nebula"
cat_activity TEXT, -- e.g., "Playing laser tag with moon mice"
fifi_preferences JSONB, -- e.g., likes/dislikes/foods/shows
world_history TEXT, -- Summary of narrative events
last_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
5.Modify system prompt as per your needs.
N8N Self hosted
Self hosted web app
Hosted on Vercel
Total spend = <£1 (AI costs only)
Total Time = <1 day
Watch this video for web app overview and how it looks.
<https://youtu.be/e7PlrTdvwoM>
Contact me on [email protected]/ [email protected] for any queries
Hope you enjoy!!