Spaces:
Runtime error
Runtime error
Upload 2 files
Browse files- app.html +110 -0
- knowledge_base.csv +129 -0
app.html
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<style>
|
| 2 |
+
html,
|
| 3 |
+
body,
|
| 4 |
+
.gradio-container {
|
| 5 |
+
background-color: #CAAC7D !important;
|
| 6 |
+
}
|
| 7 |
+
.brand-header {
|
| 8 |
+
text-align: center;
|
| 9 |
+
color: #432818 !important;
|
| 10 |
+
margin-bottom: 25px;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
.brand-header h1 {
|
| 14 |
+
color: #432818 !important;
|
| 15 |
+
font-family: Georgia, "Times New Roman", serif;
|
| 16 |
+
font-size: 60px;
|
| 17 |
+
margin: 0;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.brand-header p {
|
| 21 |
+
color: #432818 !important;
|
| 22 |
+
font-family: Georgia, "Times New Roman", serif;
|
| 23 |
+
font-size: 16px;
|
| 24 |
+
margin-top: 5px;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.bot-description {
|
| 28 |
+
max-width: 1000px;
|
| 29 |
+
margin: 0 auto 20px auto;
|
| 30 |
+
text-align: center;
|
| 31 |
+
color: #432818 !important;
|
| 32 |
+
font-family: Georgia, "Times New Roman", serif;
|
| 33 |
+
font-size: 16px;
|
| 34 |
+
line-height: 1.5;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
#chatbot-box {
|
| 38 |
+
background-color: #FFEEC2 !important;
|
| 39 |
+
border: none !important;
|
| 40 |
+
border-radius: 30px !important;
|
| 41 |
+
max-width: 1200px !important;
|
| 42 |
+
margin: 0 auto !important;
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
#chatbot-box .bubble-wrap {
|
| 46 |
+
background-color: #FFEEC2 !important;
|
| 47 |
+
}
|
| 48 |
+
#chatbot-box .wrap {
|
| 49 |
+
background-color: #FFEEC2 !important;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
#user-input {
|
| 53 |
+
background-color: #FFEEC2 !important;
|
| 54 |
+
border: none !important;
|
| 55 |
+
border-radius: 30px !important;
|
| 56 |
+
max-width: 1200px !important;
|
| 57 |
+
margin: 0 auto !important;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
#user-input .bubble-wrap {
|
| 61 |
+
background-color: #FFEEC2 !important;
|
| 62 |
+
}
|
| 63 |
+
#user-input .wrap {
|
| 64 |
+
background-color: #FFEEC2 !important;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
/* buttons */
|
| 69 |
+
|
| 70 |
+
.buttons {
|
| 71 |
+
display: flex;
|
| 72 |
+
justify-content: center;
|
| 73 |
+
gap: 12px;
|
| 74 |
+
margin: 18px;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
a, .button {
|
| 78 |
+
background: #432818;
|
| 79 |
+
color: #FFEEC2 !important;
|
| 80 |
+
padding: 15px;
|
| 81 |
+
border-radius: 10px;
|
| 82 |
+
text-decoration: none !important;
|
| 83 |
+
font-family: Georgia, "Times New Roman", serif;
|
| 84 |
+
}
|
| 85 |
+
|
| 86 |
+
a:hover, .button:hover {
|
| 87 |
+
background: #5A3822;
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
/* potentially edit of Other Spaces */
|
| 91 |
+
|
| 92 |
+
.other-spaces {
|
| 93 |
+
display: flex;
|
| 94 |
+
background-color: #FFEEC2;
|
| 95 |
+
margin: 15px;
|
| 96 |
+
padding: 20px;
|
| 97 |
+
font-family: Georgia, "Times New Roman", serif;
|
| 98 |
+
color: #432818 !important;
|
| 99 |
+
border-radius: 20px;
|
| 100 |
+
max-width: 100px;
|
| 101 |
+
</style>
|
| 102 |
+
|
| 103 |
+
<div class="brand-header">
|
| 104 |
+
<h1>NextChapter</h1>
|
| 105 |
+
<p>Personal Media Curator</p>
|
| 106 |
+
</div>
|
| 107 |
+
|
| 108 |
+
<div class="bot-description">
|
| 109 |
+
Have you ever wondered about what to watch or read next? With NextChapter, you can get personal assistance and find the right media for you! Ask Next Chapter about any genre, preference, or question, and the AI can provide you with media recommendations tailored to your taste.
|
| 110 |
+
</div>
|
knowledge_base.csv
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
category;title;creator;subgenre;group;series;length;themes;description;ending;feeling;keywords
|
| 2 |
+
Book;The Hobbit;J.R.R. Tolkien;High Fantasy;Teen/Adult;No;310;Adventure, Courage;Bilbo joins a quest with dwarves to reclaim a lost kingdom.;Happy;Adventurous;dragon, quest, ring, dwarf
|
| 3 |
+
Book;Harry Potter and the Sorcerer's Stone;J.K. Rowling;Magical Fantasy;Young Adult;Yes;309;Friendship, Courage;A young wizard begins his magical education at Hogwarts.;Happy;Magical;wizard, school, magic, friendship
|
| 4 |
+
Book;The Chronicles of Narnia: The Lion, the Witch and the Wardrobe;C.S. Lewis;Fantasy;Children/Teen;Yes;208;Good vs Evil, Faith;Four siblings discover a magical world ruled by a wicked witch.;Happy;Wonder;lion, wardrobe, fantasy, siblings
|
| 5 |
+
Book;Percy Jackson & the Olympians: The Lightning Thief;Rick Riordan;Mythological Fantasy;Young Adult;Yes;377;Friendship, Destiny;A demigod embarks on a quest to prevent a war among the gods.;Happy;Exciting;greek gods, camp, quest, monsters
|
| 6 |
+
Book;The Hunger Games;Suzanne Collins;Dystopian;Young Adult;Yes;374;Survival, Rebellion;A teenager fights for survival in a televised competition.;Bittersweet;Intense;arena, rebellion, survival, dystopia
|
| 7 |
+
Book;The Giver;Lois Lowry;Dystopian;Young Adult;No;240;Freedom, Memory;A boy discovers the hidden truths behind his perfect society.;Open;Thoughtful;memories, society, choice, future
|
| 8 |
+
Book;The Maze Runner;James Dashner;Science Fiction;Young Adult;Yes;375;Survival, Mystery;A group of teens must escape a deadly maze with no memories.;Hopeful;Suspenseful;maze, experiment, mystery, escape
|
| 9 |
+
Book;Eragon;Christopher Paolini;High Fantasy;Teen/Adult;Yes;544;Destiny, Courage;A farm boy discovers a dragon egg and becomes a Dragon Rider.;Hopeful;Epic;dragon, rider, magic, empire
|
| 10 |
+
Book;The Fault in Our Stars;John Green;Contemporary Romance;Teen;No;313;Love, Loss;Two teenagers with cancer fall in love and change each other's lives.;Sad;Emotional;cancer, romance, friendship, hope
|
| 11 |
+
Book;Wonder;R.J. Palacio;Contemporary Fiction;Children/Teen;No;315;Kindness, Acceptance;A boy with a facial difference starts attending school.;Happy;Heartwarming;school, kindness, family, friendship
|
| 12 |
+
Book;Charlotte's Web;E.B. White;Children's Fiction;Children;No;192;Friendship, Life;A spider helps save the life of her pig friend.;Bittersweet;Warm;farm, spider, pig, friendship
|
| 13 |
+
Book;The Little Prince;Antoine de Saint-Exupéry;Philosophical Fiction;All Ages;No;96;Love, Imagination;A pilot meets a mysterious prince from another planet.;Bittersweet;Reflective;planet, fox, rose, imagination
|
| 14 |
+
Book;Anne of Green Gables;L.M. Montgomery;Coming-of-Age;All Ages;Yes;320;Family, Growth;An imaginative orphan transforms the lives of her new family.;Happy;Charming;orphan, friendship, countryside, dreams
|
| 15 |
+
Book;The Secret Garden;Frances Hodgson Burnett;Children's Classic;Children;No;331;Healing, Friendship;A lonely girl restores a neglected garden and herself.;Happy;Hopeful;garden, friendship, nature, family
|
| 16 |
+
Book;Treasure Island;Robert Louis Stevenson;Adventure;Teen/Adult;No;240;Greed, Adventure;A young boy searches for legendary pirate treasure.;Happy;Adventurous;pirates, treasure, island, map
|
| 17 |
+
Book;The Adventures of Tom Sawyer;Mark Twain;Adventure;All Ages;No;274;Freedom, Friendship;A mischievous boy experiences adventures along the Mississippi River.;Happy;Playful;mississippi, childhood, adventure, friends
|
| 18 |
+
Book;A Wrinkle in Time;Madeleine L'Engle;Science Fantasy;Young Adult;Yes;256;Love, Courage;A girl travels through space and time to rescue her father.;Hopeful;Imaginative;space, family, science, adventure
|
| 19 |
+
Book;The Book Thief;Markus Zusak;Historical Fiction;Teen/Adult;No;552;War, Humanity;A girl finds comfort in books during World War II Germany.;Bittersweet;Emotional;books, war, family, courage
|
| 20 |
+
Book;The Alchemist;Paulo Coelho;Philosophical Fiction;Adult;No;208;Dreams, Destiny;A shepherd journeys in search of his personal legend.;Hopeful;Inspirational;journey, dreams, treasure, destiny
|
| 21 |
+
Book;Life of Pi;Yann Martel;Adventure Fiction;Teen/Adult;No;331;Faith, Survival;A boy survives a shipwreck while sharing a lifeboat with a tiger.;Open;Reflective;tiger, ocean, survival, faith
|
| 22 |
+
Book;Jane Eyre;Charlotte Brontë;Gothic Romance;Adult;No;500;Independence, Love;A young woman faces hardship while searching for identity and love.;Happy;Emotional;gothic, romance, independence, mystery
|
| 23 |
+
Book;The Notebook;Nicholas Sparks;Romance Drama;Adult;No;240;Love, Memory;A man tells the story of a lifelong love that survives many challenges.;Bittersweet;Romantic;couple, memories, devotion, relationship
|
| 24 |
+
Book;Me Before You;Jojo Moyes;Romance Drama;Adult;No;369;Love, Choices;A young woman forms a life-changing connection with a wealthy man.;Sad;Emotional;romance, friendship, transformation, choices
|
| 25 |
+
Book;The Time Traveler's Wife;Audrey Niffenegger;Science Fiction Romance;Adult;No;546;Love, Time;A couple struggles with a relationship affected by time travel.;Bittersweet;Romantic;time travel, marriage, destiny, love
|
| 26 |
+
Book;The Da Vinci Code;Dan Brown;Mystery Thriller;Adult;No;689;Secrets, History;A professor investigates a mysterious murder involving ancient secrets.;Open;Suspenseful;code, mystery, symbols, history
|
| 27 |
+
Book;Gone Girl;Gillian Flynn;Psychological Thriller;Adult;No;432;Marriage, Deception;A disappearance reveals secrets hidden inside a troubled marriage.;Dark;Suspenseful;crime, psychology, mystery, lies
|
| 28 |
+
Book;The Shining;Stephen King;Horror;Adult;No;447;Fear, Isolation;A family experiences terrifying events in an isolated hotel.;Tragic;Scary;hotel, horror, isolation, supernatural
|
| 29 |
+
Book;Dracula;Bram Stoker;Gothic Horror;Adult;No;418;Good vs Evil, Fear;A group of people confronts a legendary vampire.;Hopeful;Dark;vampire, gothic, castle, horror
|
| 30 |
+
Book;Frankenstein;Mary Shelley;Science Fiction Horror;Adult;No;280;Creation, Responsibility;A scientist creates life and faces the consequences of his actions.;Tragic;Thoughtful;monster, science, creator, ethics
|
| 31 |
+
Book;1984;George Orwell;Dystopian Fiction;Adult;No;328;Freedom, Control;A man questions a totalitarian society that controls information.;Tragic;Dark;government, surveillance, freedom, dystopia
|
| 32 |
+
Book;Brave New World;Aldous Huxley;Dystopian Science Fiction;Adult;No;268;Technology, Society;A futuristic society sacrifices individuality for stability.;Open;Thoughtful;technology, society, future, control
|
| 33 |
+
Book;The Martian;Andy Weir;Science Fiction;Adult;No;369;Survival, Science;An astronaut uses science and creativity to survive alone on Mars.;Happy;Adventurous;mars, space, science, astronaut
|
| 34 |
+
Book;Sapiens;Yuval Noah Harari;Nonfiction History;Adult;No;464;Humanity, Evolution;A study of human history and the development of civilization.;Open;Educational;history, humans, evolution, civilization
|
| 35 |
+
Book;Atomic Habits;James Clear;Self-Help Psychology;Adult;No;320;Growth, Discipline;A guide explaining how small habits create major life changes.;Hopeful;Motivational;habits, productivity, improvement, psychology
|
| 36 |
+
Book;The Psychology of Money;Morgan Housel;Finance Psychology;Adult;No;256;Money, Behavior;Explores how emotions influence financial decisions.;Hopeful;Educational;finance, money, behavior, investing
|
| 37 |
+
Book;Educated;Tara Westover;Memoir;Adult;No;352;Education, Identity;A woman transforms her life through learning and self-discovery.;Hopeful;Inspirational;education, family, memoir, growth
|
| 38 |
+
Book;The Diary of a Young Girl;Anne Frank;Historical Memoir;Teen/Adult;No;352;War, Hope;A young girl records her experiences during World War II.;Sad;Emotional;war, diary, history, courage
|
| 39 |
+
Book;The Hitchhiker's Guide to the Galaxy;Douglas Adams;Science Fiction Comedy;Teen/Adult;Yes;224;Adventure, Humor;A human travels across the universe after Earth's destruction.;Happy;Funny;space, aliens, comedy, adventure
|
| 40 |
+
Book;The Old Man and the Sea;Ernest Hemingway;Literary Fiction;Adult;No;127;Persistence, Courage;An old fisherman struggles against nature while seeking a great catch.;Bittersweet;Reflective;ocean, fishing, courage, perseverance
|
| 41 |
+
Movie;The Shawshank Redemption;Frank Darabont;Drama;Adult;No;142;Hope, Freedom;A banker forms an unlikely friendship while serving a life sentence in prison.;Hopeful;Inspirational;prison, friendship, escape, hope
|
| 42 |
+
Movie;The Godfather;Francis Ford Coppola;Crime Drama;Adult;Yes;175;Family, Power;The reluctant son of a mafia leader becomes the head of the family business.;Bittersweet;Intense;mafia, family, crime, power
|
| 43 |
+
Movie;The Dark Knight;Christopher Nolan;Superhero;Teen/Adult;Yes;152;Justice, Chaos;Batman faces the Joker in a battle for Gotham's future.;Bittersweet;Thrilling;batman, joker, hero, crime
|
| 44 |
+
Movie;Inception;Christopher Nolan;Science Fiction;Teen/Adult;No;148;Reality, Dreams;A skilled thief enters dreams to perform an impossible mission.;Open;Mind-Bending;dreams, heist, subconscious, mind
|
| 45 |
+
Movie;Interstellar;Christopher Nolan;Science Fiction;Teen/Adult;No;169;Family, Survival;Astronauts travel through space to save humanity.;Hopeful;Epic;space, black hole, family, future
|
| 46 |
+
Movie;The Matrix;The Wachowskis;Science Fiction;Teen/Adult;Yes;136;Freedom, Reality;A hacker discovers the truth about his simulated world.;Hopeful;Action-Packed;matrix, simulation, hacker, chosen one
|
| 47 |
+
Movie;Forrest Gump;Robert Zemeckis;Drama;Teen/Adult;No;142;Life, Perseverance;A kind-hearted man experiences extraordinary moments in American history.;Happy;Heartwarming;friendship, life, history, destiny
|
| 48 |
+
Movie;Titanic;James Cameron;Romance Drama;Teen/Adult;No;195;Love, Sacrifice;Two young passengers fall in love aboard the doomed Titanic.;Sad;Romantic;ship, iceberg, romance, tragedy
|
| 49 |
+
Movie;The Lion King;Roger Allers & Rob Minkoff;Animated Adventure;Family;No;88;Responsibility, Family;A young lion must reclaim his rightful place as king.;Happy;Emotional;lion, kingdom, family, courage
|
| 50 |
+
Movie;Toy Story;John Lasseter;Animated Comedy;Children/Family;Yes;81;Friendship, Loyalty;Toys come to life and learn to work together.;Happy;Fun;toys, friendship, adventure, childhood
|
| 51 |
+
Movie;Finding Nemo;Andrew Stanton;Animated Adventure;Children/Family;No;100;Family, Courage;A clownfish crosses the ocean to rescue his son.;Happy;Heartwarming;ocean, fish, family, journey
|
| 52 |
+
Movie;Up;Pete Docter;Animated Adventure;Family;No;96;Dreams, Friendship;An elderly man flies his house to fulfill a lifelong promise.;Happy;Touching;balloons, adventure, friendship, dreams
|
| 53 |
+
Movie;Inside Out;Pete Docter;Animated Family;Children/Family;No;95;Emotions, Growth;A girl's emotions learn to work together during a difficult move.;Happy;Thoughtful;emotions, mind, family, growing up
|
| 54 |
+
Movie;Coco;Lee Unkrich;Animated Fantasy;Family;No;105;Family, Memory;A boy enters the Land of the Dead to discover his family's history.;Happy;Heartwarming;music, family, memory, mexico
|
| 55 |
+
Movie;Spider-Man: Into the Spider-Verse;Bob Persichetti;Animated Superhero;Teen/Family;Yes;117;Identity, Courage;Miles Morales becomes Spider-Man with help from heroes across dimensions.;Hopeful;Exciting;spider-man, multiverse, hero, teenager
|
| 56 |
+
Movie;Avengers: Endgame;Anthony & Joe Russo;Superhero;Teen/Adult;Yes;181;Sacrifice, Unity;The Avengers make one final attempt to undo a devastating defeat.;Bittersweet;Epic;avengers, infinity, heroes, marvel
|
| 57 |
+
Movie;Iron Man;Jon Favreau;Superhero;Teen/Adult;Yes;126;Responsibility, Innovation;A billionaire inventor builds a powerful suit to fight evil.;Happy;Exciting;armor, technology, hero, marvel
|
| 58 |
+
Movie;Jurassic Park;Steven Spielberg;Science Fiction Adventure;Teen/Adult;Yes;127;Nature, Survival;Visitors struggle to survive after cloned dinosaurs escape.;Hopeful;Suspenseful;dinosaurs, island, science, survival
|
| 59 |
+
Movie;Jaws;Steven Spielberg;Thriller;Teen/Adult;No;124;Fear, Survival;A seaside town is terrorized by a massive great white shark.;Happy;Suspenseful;shark, ocean, beach, suspense
|
| 60 |
+
Movie;Back to the Future;Robert Zemeckis;Science Fiction Comedy;Family;Yes;116;Time, Family;A teenager accidentally travels to the past and must restore history.;Happy;Fun;time travel, car, future, family
|
| 61 |
+
Movie;The Lord of the Rings: The Fellowship of the Ring;Peter Jackson;High Fantasy;Teen/Adult;Yes;178;Friendship, Courage;A hobbit begins a dangerous quest to destroy a powerful ring.;Hopeful;Epic;ring, fellowship, middle-earth, quest
|
| 62 |
+
Movie;The Lord of the Rings: The Return of the King;Peter Jackson;High Fantasy;Teen/Adult;Yes;201;Hope, Sacrifice;The final battle for Middle-earth decides the fate of the world.;Happy;Triumphant;ring, battle, king, middle-earth
|
| 63 |
+
Movie;Pirates of the Caribbean: The Curse of the Black Pearl;Gore Verbinski;Fantasy Adventure;Teen/Adult;Yes;143;Adventure, Loyalty;A blacksmith and a pirate battle a cursed crew.;Happy;Adventurous;pirates, curse, treasure, ship
|
| 64 |
+
Movie;Shrek;Andrew Adamson & Vicky Jenson;Animated Comedy;Family;Yes;90;Acceptance, Friendship;An ogre rescues a princess and finds unexpected love.;Happy;Funny;ogre, fairy tale, donkey, friendship
|
| 65 |
+
Movie;The Incredibles;Brad Bird;Animated Superhero;Family;Yes;115;Family, Heroism;A family of superheroes reunites to stop a dangerous villain.;Happy;Exciting;superheroes, family, action, adventure
|
| 66 |
+
Movie;The Truman Show;Peter Weir;Drama;Teen/Adult;No;103;Freedom, Identity;A man discovers his entire life is a television show.;Hopeful;Thought-Provoking;television, reality, freedom, identity
|
| 67 |
+
Movie;The Pursuit of Happyness;Gabriele Muccino;Biography Drama;Teen/Adult;No;117;Perseverance, Family;A struggling salesman fights for a better life for his son.;Happy;Inspirational;success, father, determination, hope
|
| 68 |
+
Movie;Gladiator;Ridley Scott;Historical Drama;Adult;No;155;Revenge, Honor;A betrayed Roman general seeks justice in the arena.;Bittersweet;Epic;rome, gladiator, revenge, emperor
|
| 69 |
+
Movie;WALL·E;Andrew Stanton;Animated Science Fiction;Family;No;98;Love, Environment;A lonely robot discovers purpose while helping humanity.;Happy;Heartwarming;robot, earth, space, love
|
| 70 |
+
Movie;The Green Mile;Frank Darabont;Fantasy Drama;Adult;No;189;Compassion, Justice;A prison guard encounters a mysterious inmate with extraordinary gifts.;Sad;Emotional;prison, miracle, justice, friendship
|
| 71 |
+
Series;Breaking Bad;Vince Gilligan;Crime Drama;Adult;Yes;62 episodes;Crime, Family;A chemistry teacher turns to making meth after a cancer diagnosis.;Bittersweet;Intense;meth, crime, chemistry, cartel
|
| 72 |
+
Series;Better Call Saul;Vince Gilligan & Peter Gould;Crime Drama;Adult;Yes;63 episodes;Identity, Morality;A struggling lawyer slowly transforms into Saul Goodman.;Bittersweet;Thoughtful;lawyer, crime, transformation, justice
|
| 73 |
+
Series;Stranger Things;The Duffer Brothers;Science Fiction Horror;Teen/Adult;Yes;42 episodes;Friendship, Courage;A group of friends uncovers supernatural mysteries in their town.;Open;Suspenseful;upside down, monsters, friendship, mystery
|
| 74 |
+
Series;The Office (US);Greg Daniels;Sitcom;Teen/Adult;Yes;201 episodes;Friendship, Workplace;Employees navigate everyday life in a quirky paper company.;Happy;Funny;office, comedy, coworkers, documentary
|
| 75 |
+
Series;Friends;David Crane & Marta Kauffman;Sitcom;Teen/Adult;Yes;236 episodes;Friendship, Love;Six friends share life, careers, and relationships in New York.;Happy;Comforting;friends, apartment, comedy, coffee
|
| 76 |
+
Series;Sherlock;Mark Gatiss & Steven Moffat;Mystery;Teen/Adult;Yes;13 episodes;Logic, Friendship;A modern Sherlock Holmes solves complex criminal cases.;Hopeful;Clever;detective, london, mystery, deduction
|
| 77 |
+
Series;The Crown;Peter Morgan;Historical Drama;Adult;Yes;60 episodes;Duty, Family;The reign of Queen Elizabeth II through decades of history.;Bittersweet;Elegant;royalty, politics, history, monarchy
|
| 78 |
+
Series;The Mandalorian;Jon Favreau;Science Fiction;Teen/Adult;Yes;24 episodes;Honor, Family;A bounty hunter protects a mysterious child across the galaxy.;Hopeful;Adventurous;star wars, bounty hunter, grogu, space
|
| 79 |
+
Series;Game of Thrones;David Benioff & D.B. Weiss;Epic Fantasy;Adult;Yes;73 episodes;Power, Survival;Noble families battle for control of the Iron Throne.;Bittersweet;Epic;dragons, throne, war, kingdoms
|
| 80 |
+
Series;House M.D.;David Shore;Medical Drama;Teen/Adult;Yes;177 episodes;Medicine, Ethics;A brilliant but difficult doctor solves rare medical cases.;Open;Thought-Provoking;hospital, diagnosis, doctor, mystery
|
| 81 |
+
Series;The Good Doctor;David Shore;Medical Drama;Teen/Adult;Yes;126 episodes;Empathy, Growth;A young surgeon with autism proves his medical abilities.;Happy;Inspirational;hospital, surgeon, autism, medicine
|
| 82 |
+
Series;Wednesday;Alfred Gough & Miles Millar;Fantasy Mystery;Teen;Yes;16 episodes;Identity, Mystery;Wednesday Addams investigates strange events at Nevermore Academy.;Open;Darkly Fun;magic, academy, mystery, addams
|
| 83 |
+
Series;Arcane;Christian Linke & Alex Yee;Animated Fantasy;Teen/Adult;Yes;18 episodes;Family, Conflict;Two sisters are divided by war in the cities of Piltover and Zaun.;Bittersweet;Emotional;league of legends, sisters, magic, steampunk
|
| 84 |
+
Series;Avatar: The Last Airbender;Michael Dante DiMartino & Bryan Konietzko;Animated Fantasy;Children/Teen;Yes;61 episodes;Balance, Friendship;A young Avatar must master the elements to save the world.;Happy;Epic;avatar, bending, fire nation, adventure
|
| 85 |
+
Anime;Naruto;Masashi Kishimoto;Shonen;Teen;Yes;220 episodes;Perseverance, Friendship;A young ninja dreams of becoming the Hokage.;Hopeful;Inspirational;ninja, hokage, village, friendship
|
| 86 |
+
Anime;Naruto: Shippuden;Masashi Kishimoto;Shonen;Teen;Yes;500 episodes;Destiny, Sacrifice;Naruto continues his journey to protect his friends and village.;Happy;Epic;akatsuki, ninja, war, hokage
|
| 87 |
+
Anime;One Piece;Eiichiro Oda;Adventure Shonen;Teen;Yes;1100+ episodes;Freedom, Friendship;Pirates search for the legendary One Piece treasure.;Open;Adventurous;pirates, treasure, crew, ocean
|
| 88 |
+
Anime;Attack on Titan;Hajime Isayama;Dark Fantasy;Teen/Adult;Yes;94 episodes;Freedom, Survival;Humanity fights giant Titans while uncovering shocking truths.;Bittersweet;Intense;titans, walls, soldiers, war
|
| 89 |
+
Anime;Demon Slayer;Koyoharu Gotouge;Fantasy Shonen;Teen;Yes;60+ episodes;Family, Determination;A boy becomes a demon slayer to save his sister.;Hopeful;Emotional;demons, sword, family, hashira
|
| 90 |
+
Anime;Jujutsu Kaisen;Gege Akutami;Dark Fantasy;Teen;Yes;47+ episodes;Sacrifice, Courage;A student battles dangerous curses after gaining supernatural powers.;Open;Action-Packed;curses, sorcerer, school, battles
|
| 91 |
+
Anime;Death Note;Tsugumi Ohba & Takeshi Obata;Psychological Thriller;Teen/Adult;No;37 episodes;Justice, Power;A student discovers a notebook that can kill anyone.;Bittersweet;Suspenseful;notebook, detective, crime, genius
|
| 92 |
+
Anime;Fullmetal Alchemist: Brotherhood;Hiromu Arakawa;Fantasy Adventure;Teen;Yes;64 episodes;Brotherhood, Sacrifice;Two brothers seek the Philosopher's Stone after a failed experiment.;Happy;Epic;alchemy, brothers, military, stone
|
| 93 |
+
Anime;Spy × Family;Tatsuya Endo;Comedy Action;Family;Yes;37+ episodes;Family, Trust;A spy, an assassin, and a telepath pretend to be a family.;Open;Wholesome;spy, family, school, comedy
|
| 94 |
+
Anime;My Hero Academia;Kohei Horikoshi;Superhero Shonen;Teen;Yes;160+ episodes;Heroism, Growth;A powerless boy trains to become the world's greatest hero.;Open;Exciting;heroes, academy, quirks, students
|
| 95 |
+
Anime;Dr. Stone;Riichiro Inagaki;Science Adventure;Teen;Yes;60+ episodes;Science, Civilization;A scientific genius rebuilds civilization after humanity turns to stone.;Hopeful;Educational;science, inventions, survival, civilization
|
| 96 |
+
Anime;Blue Lock;Muneyuki Kaneshiro;Sports;Teen;Yes;38+ episodes;Ambition, Competition;Young strikers compete to become Japan's greatest soccer player.;Open;Intense;soccer, striker, competition, ego
|
| 97 |
+
Anime;Haikyu!!;Haruichi Furudate;Sports;Teen;Yes;85 episodes;Teamwork, Perseverance;A determined volleyball player joins his dream high school team.;Hopeful;Motivating;volleyball, school, teamwork, rivals
|
| 98 |
+
Anime;Your Lie in April;Naoshi Arakawa;Romance Drama;Teen;No;22 episodes;Love, Healing;A gifted pianist rediscovers music through an energetic violinist.;Sad;Emotional;music, piano, romance, friendship
|
| 99 |
+
Anime;Hunter × Hunter (2011);Yoshihiro Togashi;Adventure Shonen;Teen;Yes;148 episodes;Friendship, Adventure;A young boy searches for his legendary hunter father.;Open;Exciting;hunters, adventure, nen, friendship
|
| 100 |
+
TV Show;Planet Earth;BBC Natural History Unit;Nature Documentary;All Ages;Yes;11 episodes;Nature, Wildlife;A breathtaking exploration of Earth's ecosystems and animals.;Hopeful;Awe-Inspiring;animals, nature, earth, documentary
|
| 101 |
+
TV Show;Planet Earth II;BBC Natural History Unit;Nature Documentary;All Ages;Yes;6 episodes;Nature, Survival;Advanced filmmaking captures wildlife in extraordinary detail.;Hopeful;Awe-Inspiring;wildlife, nature, habitats, earth
|
| 102 |
+
TV Show;Blue Planet II;BBC Natural History Unit;Nature Documentary;All Ages;Yes;7 episodes;Ocean, Conservation;An exploration of marine life beneath the world's oceans.;Hopeful;Fascinating;ocean, fish, sea, conservation
|
| 103 |
+
TV Show;Cosmos: A Spacetime Odyssey;Ann Druyan & Steven Soter;Science Documentary;Teen/Adult;No;13 episodes;Science, Discovery;Neil deGrasse Tyson explores the universe and scientific history.;Hopeful;Inspirational;space, universe, science, astronomy
|
| 104 |
+
TV Show;MythBusters;Peter Rees;Science Entertainment;Family;Yes;296 episodes;Science, Experimentation;Hosts test popular myths using experiments and engineering.;Happy;Educational;experiments, myths, engineering, explosions
|
| 105 |
+
TV Show;How It's Made;Gabriel Hoss;Educational;All Ages;Yes;390+ episodes;Engineering, Manufacturing;Each episode explains how everyday products are made.;Happy;Relaxing;factories, machines, manufacturing, products
|
| 106 |
+
TV Show;The Great British Bake Off;Love Productions;Reality Competition;Family;Yes;150+ episodes;Creativity, Friendship;Amateur bakers compete in friendly baking challenges.;Happy;Comforting;baking, cakes, competition, desserts
|
| 107 |
+
TV Show;MasterChef US;Franc Roddam;Cooking Competition;Teen/Adult;Yes;280+ episodes;Cooking, Ambition;Home cooks compete to become the next MasterChef.;Happy;Competitive;cooking, chefs, recipes, kitchen
|
| 108 |
+
TV Show;Hell's Kitchen;Gordon Ramsay;Cooking Competition;Adult;Yes;350+ episodes;Leadership, Cooking;Chefs compete under intense pressure for a top culinary job.;Happy;Intense;chef, restaurant, cooking, competition
|
| 109 |
+
TV Show;Kitchen Nightmares;Gordon Ramsay;Reality;Teen/Adult;Yes;90+ episodes;Business, Improvement;Gordon Ramsay helps struggling restaurants recover.;Hopeful;Motivating;restaurant, business, chef, makeover
|
| 110 |
+
TV Show;Shark Tank;Mark Burnett;Business Reality;Teen/Adult;Yes;330+ episodes;Entrepreneurship, Innovation;Entrepreneurs pitch business ideas to wealthy investors.;Hopeful;Inspirational;startup, investment, business, entrepreneurs
|
| 111 |
+
TV Show;The Apprentice (US);Mark Burnett;Business Reality;Teen/Adult;Yes;190+ episodes;Leadership, Competition;Contestants compete through business challenges.;Happy;Competitive;business, leadership, teamwork, tasks
|
| 112 |
+
TV Show;America's Got Talent;Simon Cowell;Talent Competition;Family;Yes;350+ episodes;Talent, Dreams;Performers compete with a wide variety of acts.;Happy;Exciting;singing, dancing, magic, talent
|
| 113 |
+
TV Show;The Voice;John de Mol;Music Competition;Family;Yes;500+ episodes;Music, Growth;Singers compete while being mentored by celebrity coaches.;Happy;Inspiring;singing, coaches, auditions, music
|
| 114 |
+
TV Show;Jeopardy!;Merv Griffin;Quiz Show;Family;Yes;9000+ episodes;Knowledge, Competition;Contestants answer trivia clues across many categories.;Happy;Intellectual;quiz, trivia, knowledge, competition
|
| 115 |
+
TV Show;Wheel of Fortune;Merv Griffin;Game Show;Family;Yes;8000+ episodes;Luck, Vocabulary;Players solve word puzzles to win prizes.;Happy;Lighthearted;puzzles, words, prizes, game
|
| 116 |
+
TV Show;Who Wants to Be a Millionaire?;David Briggs;Game Show;Family;Yes;1800+ episodes;Knowledge, Courage;Contestants answer increasingly difficult questions for cash.;Happy;Suspenseful;millionaire, quiz, money, questions
|
| 117 |
+
TV Show;Survivor;Charlie Parsons;Reality Competition;Teen/Adult;Yes;700+ episodes;Strategy, Survival;Contestants compete while living in remote locations.;Bittersweet;Competitive;island, alliances, challenges, survival
|
| 118 |
+
TV Show;The Amazing Race;Elise Doganieri & Bertram van Munster;Reality Competition;Family;Yes;500+ episodes;Adventure, Teamwork;Teams race around the world completing challenges.;Happy;Adventurous;travel, race, teamwork, countries
|
| 119 |
+
TV Show;American Ninja Warrior;Tokyo Broadcasting System;Sports Competition;Family;Yes;250+ episodes;Determination, Fitness;Athletes tackle challenging obstacle courses.;Hopeful;Exciting;obstacles, strength, competition, fitness
|
| 120 |
+
TV Show;The Joy of Painting;Bob Ross;Art Education;All Ages;Yes;403 episodes;Creativity, Relaxation;Bob Ross teaches landscape painting with simple techniques.;Happy;Calming;painting, art, landscape, creativity
|
| 121 |
+
TV Show;Bill Nye the Science Guy;Bill Nye;Educational Science;Children/Teen;Yes;100 episodes;Science, Curiosity;Fun demonstrations teach scientific concepts to young viewers.;Happy;Educational;science, experiments, education, learning
|
| 122 |
+
TV Show;Brain Games;National Geographic;Educational;Family;Yes;65 episodes;Psychology, Perception;Interactive experiments reveal how the human brain works.;Hopeful;Mind-Expanding;brain, psychology, illusions, memory
|
| 123 |
+
TV Show;Top Gear (UK);BBC;Automotive Entertainment;Teen/Adult;Yes;200+ episodes;Cars, Adventure;Hosts review vehicles and complete entertaining driving challenges.;Happy;Funny;cars, racing, reviews, road trips
|
| 124 |
+
TV Show;The Grand Tour;Jeremy Clarkson, Richard Hammond & James May;Automotive Entertainment;Teen/Adult;Yes;46 episodes;Cars, Friendship;Three presenters travel the world reviewing cars and adventures.;Happy;Entertaining;cars, travel, racing, comedy
|
| 125 |
+
TV Show;Penn & Teller: Fool Us;Penn Jillette & Teller;Magic Competition;Family;Yes;170+ episodes;Creativity, Skill;Magicians perform tricks while trying to fool Penn & Teller.;Happy;Amazing;magic, illusion, performance, competition
|
| 126 |
+
TV Show;The Toys That Made Us;Brian Volk-Weiss;Documentary;Teen/Adult;Yes;12 episodes;History, Pop Culture;Each episode explores the story behind iconic toy franchises.;Happy;Nostalgic;toys, history, nostalgia, collectibles
|
| 127 |
+
TV Show;Explained;Vox Media;Educational Documentary;Teen/Adult;Yes;44 episodes;Knowledge, Society;Short episodes explain complex topics in an accessible way.;Open;Informative;science, society, economics, culture
|
| 128 |
+
TV Show;Our Planet;Alastair Fothergill;Nature Documentary;Family;Yes;8 episodes;Conservation, Nature;A stunning look at wildlife and the importance of protecting ecosystems.;Hopeful;Beautiful;wildlife, earth, environment, animals
|
| 129 |
+
TV Show;The Universe;History Channel;Science Documentary;Teen/Adult;Yes;89 episodes;Astronomy, Exploration;Experts explain planets, stars, galaxies, and cosmic phenomena.;Open;Fascinating;space, planets, galaxies, astronomy
|