Your channel remembers everything you've said - An interactive Youtube narrative map
0
stars
32
commits
JavaScript
primary language
Sep 13, 2026
updated
Explore how YouTube creators frame the world—and how the conversation changes.
Explore the live app · Try the agent · Run locally
Built by Perspectivity.co · Agent work for AI Tinkerers × OpenAI: Agents, Everywhere

A creator returns to the same issue months later. The examples change. A guest challenges the premise. Yesterday's certainty becomes today's question.
You remember hearing something different—but finding it means hunting through hours of video.
That is why I built Hindsight: to see how the people we watch talk about issues, how their narratives develop, and what they actually said.
Start with an issue. Follow it across videos and dates. Open the transcript behind a claim. The interesting discovery might be a disagreement, a new argument, or a consistent concern expressed in a different way.
Every dot represents a video. Clusters group the archive into issue families.
Hover to discover an issue and its video count. Click to open that cluster in the original interactive Galaxy, where you can zoom, filter, and inspect individual videos.
The central search box accepts a topic, creator, or YouTube URL. Keywords filter the map; video links open the import flow, where you can build memory from available captions. In the Galaxy, selected clusters fit the viewport and a limited set of thumbnail markers makes individual videos recognizable.
The landing map currently contains about 23,000 videos. The wider installation contains roughly 49,000 videos across more than 100 channels; different views cover different subsets.
The homepage offers a real starting point: AI regulation on Dwarkesh Patel's channel.
| April 26, 2026 | April 28, 2026 | May 1, 2026 |
|---|---|---|
| Government coercion | Vague definitions | A different analogy |
| How much control should government have over a private AI company? | How could broad risk categories be used to suppress models? | Is AI more like a nuclear weapon—or industrialization? |
These are interpretations of three published videos, with dates from the archive. They show different emphases within a broadly critical stance—not proof that one person reversed their position.

The agent shares your workspace: the selected story, sampled Galaxy sources, or the channel and draft open in the studio. You can ask about these videos or this draft without copying everything into a separate chat.
Suggested prompts help you start. Tool progress shows the work. Video cards bring evidence back into the conversation, with thumbnails, timestamp buttons, and external source links. Follow-up suggestions keep the investigation moving.
For creators, Pre-flight checks a draft against earlier claims in the channel's archive. The results appear beside the editor, and the creator decides what to revise or explain. The agent does not publish for you.
Hindsight keeps a persistent archive memory of transcripts, summaries, extracted claims, channel profiles, and search indexes. These survive app restarts, so an investigation can retrieve history without processing every video again.
flowchart LR
A[Published videos] --> B[Transcripts and claims]
B --> C[Persistent archive]
C --> D[Agent in your workspace]
D --> E[Compare arguments]
E --> F[Open source moments]
The agent can inspect tool results and take another step before answering. Cross-session personal memory and autonomous knowledge-graph learning are future directions; they are not capabilities claimed by this demo.
All collected YouTube transcripts come from Perspectivity.co as existing work from before the hackathon.
| Existing foundation | Hackathon agent work |
|---|---|
| Perspectivity.co's collected transcript corpus | Tool-calling agent and model-provider integration |
| Transcript processing, analysis, and retrieval engine | Streaming agent API and AG-UI browser round trips |
| Original visual studio and interactive Galaxy | CopilotKit interface, workspace context, suggestions, and evidence actions |
The narrative landing and investigation presentation connect that foundation to the agent workflow. The full corpus is not included in this repository. A fictional caption sample supports local setup.
Python/FastAPI serves the API and vanilla JavaScript studio. A React/CopilotKit component supplies the agent panel. Per-channel JSON under data/ stores the archive.
Reasoning uses OpenRouter, with openai/gpt-5.2 as the configured default. Retrieval uses Gemini embeddings to match the existing index. The web agent uses AG-UI; the CLI and plain SSE endpoint also expose the agent. The Expo mobile client provides archive browsing and creator tools; the web app is the primary demo.
Requires Python 3.11+ and uv.
git clone https://github.com/brishtiteveja/hindsight.git
cd hindsight
uv sync
cp .env.example .env
For the full agent workflow, set OPENROUTER_API_KEY for reasoning and GEMINI_API_KEY for retrieval in .env.
Build a small local archive from the included fictional captions:
uv run hindsight ingest samples/demo-channel --channel "Demo Channel"
uv run hindsight analyze --channel "Demo Channel"
uv run hindsight index --channel "Demo Channel"
uv run hindsight serve
Open http://localhost:8300/. Caption ingestion and serving work without model keys; analysis, indexing, and agent requests require the appropriate keys. The sample has no corresponding YouTube upload, so it demonstrates transcript processing, not real video playback. Use your own caption files or the live site for real-source exploration.
The compiled web agent is included, so Node.js is not needed just to run the app. To rebuild it after changing agent-ui/src/:
cd agent-ui
npm ci
npx vite build
For a terminal session over your indexed archive:
uv run hindsight agent --channel demo-channel "What does this archive say about AI regulation?"
| Endpoint | Purpose |
|---|---|
POST /v1/agent/agui | CopilotKit/AG-UI agent stream and browser tool handoff |
POST /v1/agent/chat | Plain SSE agent stream |
GET /v1/agent/tools | Current tool list and execution side |
/docs | Interactive FastAPI documentation |
MIT for the code. Third-party videos and transcripts are not relicensed by this repository.
32 commits
JavaScript
97.9%
Python
1.0%
Your channel remembers everything you've said - An interactive Youtube narrative map
0
stars
32
commits
JavaScript
primary language
Sep 13, 2026
updated
Explore how YouTube creators frame the world—and how the conversation changes.
Explore the live app · Try the agent · Run locally
Built by Perspectivity.co · Agent work for AI Tinkerers × OpenAI: Agents, Everywhere

A creator returns to the same issue months later. The examples change. A guest challenges the premise. Yesterday's certainty becomes today's question.
You remember hearing something different—but finding it means hunting through hours of video.
That is why I built Hindsight: to see how the people we watch talk about issues, how their narratives develop, and what they actually said.
Start with an issue. Follow it across videos and dates. Open the transcript behind a claim. The interesting discovery might be a disagreement, a new argument, or a consistent concern expressed in a different way.
Every dot represents a video. Clusters group the archive into issue families.
Hover to discover an issue and its video count. Click to open that cluster in the original interactive Galaxy, where you can zoom, filter, and inspect individual videos.
The central search box accepts a topic, creator, or YouTube URL. Keywords filter the map; video links open the import flow, where you can build memory from available captions. In the Galaxy, selected clusters fit the viewport and a limited set of thumbnail markers makes individual videos recognizable.
The landing map currently contains about 23,000 videos. The wider installation contains roughly 49,000 videos across more than 100 channels; different views cover different subsets.
The homepage offers a real starting point: AI regulation on Dwarkesh Patel's channel.
| April 26, 2026 | April 28, 2026 | May 1, 2026 |
|---|---|---|
| Government coercion | Vague definitions | A different analogy |
| How much control should government have over a private AI company? | How could broad risk categories be used to suppress models? | Is AI more like a nuclear weapon—or industrialization? |
These are interpretations of three published videos, with dates from the archive. They show different emphases within a broadly critical stance—not proof that one person reversed their position.

The agent shares your workspace: the selected story, sampled Galaxy sources, or the channel and draft open in the studio. You can ask about these videos or this draft without copying everything into a separate chat.
Suggested prompts help you start. Tool progress shows the work. Video cards bring evidence back into the conversation, with thumbnails, timestamp buttons, and external source links. Follow-up suggestions keep the investigation moving.
For creators, Pre-flight checks a draft against earlier claims in the channel's archive. The results appear beside the editor, and the creator decides what to revise or explain. The agent does not publish for you.
Hindsight keeps a persistent archive memory of transcripts, summaries, extracted claims, channel profiles, and search indexes. These survive app restarts, so an investigation can retrieve history without processing every video again.
flowchart LR
A[Published videos] --> B[Transcripts and claims]
B --> C[Persistent archive]
C --> D[Agent in your workspace]
D --> E[Compare arguments]
E --> F[Open source moments]
The agent can inspect tool results and take another step before answering. Cross-session personal memory and autonomous knowledge-graph learning are future directions; they are not capabilities claimed by this demo.
All collected YouTube transcripts come from Perspectivity.co as existing work from before the hackathon.
| Existing foundation | Hackathon agent work |
|---|---|
| Perspectivity.co's collected transcript corpus | Tool-calling agent and model-provider integration |
| Transcript processing, analysis, and retrieval engine | Streaming agent API and AG-UI browser round trips |
| Original visual studio and interactive Galaxy | CopilotKit interface, workspace context, suggestions, and evidence actions |
The narrative landing and investigation presentation connect that foundation to the agent workflow. The full corpus is not included in this repository. A fictional caption sample supports local setup.
Python/FastAPI serves the API and vanilla JavaScript studio. A React/CopilotKit component supplies the agent panel. Per-channel JSON under data/ stores the archive.
Reasoning uses OpenRouter, with openai/gpt-5.2 as the configured default. Retrieval uses Gemini embeddings to match the existing index. The web agent uses AG-UI; the CLI and plain SSE endpoint also expose the agent. The Expo mobile client provides archive browsing and creator tools; the web app is the primary demo.
Requires Python 3.11+ and uv.
git clone https://github.com/brishtiteveja/hindsight.git
cd hindsight
uv sync
cp .env.example .env
For the full agent workflow, set OPENROUTER_API_KEY for reasoning and GEMINI_API_KEY for retrieval in .env.
Build a small local archive from the included fictional captions:
uv run hindsight ingest samples/demo-channel --channel "Demo Channel"
uv run hindsight analyze --channel "Demo Channel"
uv run hindsight index --channel "Demo Channel"
uv run hindsight serve
Open http://localhost:8300/. Caption ingestion and serving work without model keys; analysis, indexing, and agent requests require the appropriate keys. The sample has no corresponding YouTube upload, so it demonstrates transcript processing, not real video playback. Use your own caption files or the live site for real-source exploration.
The compiled web agent is included, so Node.js is not needed just to run the app. To rebuild it after changing agent-ui/src/:
cd agent-ui
npm ci
npx vite build
For a terminal session over your indexed archive:
uv run hindsight agent --channel demo-channel "What does this archive say about AI regulation?"
| Endpoint | Purpose |
|---|---|
POST /v1/agent/agui | CopilotKit/AG-UI agent stream and browser tool handoff |
POST /v1/agent/chat | Plain SSE agent stream |
GET /v1/agent/tools | Current tool list and execution side |
/docs | Interactive FastAPI documentation |
MIT for the code. Third-party videos and transcripts are not relicensed by this repository.
32 commits
JavaScript
97.9%
Python
1.0%