Because movies are better with company🤗
It's friday night, your'e all set for to binge your favourite movie🥳
But all friends bail last minute!
You want the excitement of sharing the experience—the laughs, the gasps, the “wait, what?” moments.
Well guess what? CineBuddy has got you covered😎
In just a few clicks, you can join or create a movie group with others who want to watch the same film, at the same time. No awkward scheduling, no cancellations. Just instant movie magic, shared with new friends or fellow fans.
When the credits roll, the group vanishes—no clutter, no hassle, just a shared experience.
- Create or Join a Group: Users can form a group of any size (e.g., a cozy circle of 5 or a large public gathering) and select the movie they’d like to watch, along with a preferred showtime.
- Open to All or Invite-Only: Want to watch only with your friends or as a date? We got you covered! Groups can be made public or kept private. If someone else wants to watch the same movie at the same time, they can easily request to join the group.
- GenAI based Matchmaking: Facing difficulty in finding the group that will suit you? Worry not as our Google's Gemini Based GenAI agent takes care of matchmaking for you!
Google's very own gemini-1.5-flash
LLM model, enabled by Gemini API is the brains of the matchmaking feature of our application.
The LLM evaluates each user's profile and room joining history to predict what type of room the user would prefer to join again.
With these preferences all rooms are ranked and the user is recommended the room of their liking.
With Gemini API's structured output generation mechanism, the implementation of the system was much simpler cleaner and more importantly faster!
When compared with the traditional methods of manually extracting recent context for the model, Gemini API's grounding feature makes it exponentially easy for the model to look through the internet for recent and relevant information while recommending movies for users.
To view our implementation of the matchmaking feature using Gemini API✨ head on over to ml_api/llms/
!
Backend API hosted at
Machine Learning API hosted at
Few important API endpoints:
All Public Rooms
Description: List all public rooms
/api/rooms/public
Room Details
Description: Detail of a given room with id: room_id
/api/rooms/{room_id}
Room Search
Description: Search movies based on date and title
/api/rooms/search
ML Matchmaking with Gemini API
Description: Find relavant rooms for the given user with id user_id
/mlapi/matchmaking/{user_id}