TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Factual AI Q&A – Answers based on Huberman Lab transcripts

120 pointsby rileytover 2 years ago
This is a quick prototype I built for semantic search and factual question answering using embeddings and GPT-3.<p>It tries to solve the LLM hallucination issue by guiding it only to answer questions from the given context instead of making things up. If you ask something not covered in an episode, it should say that it doesn&#x27;t know rather than providing a plausible, but potentially incorrect response.<p>It uses Whisper to transcribe, text-embedding-ada-002 to embed, Pinecone.io to search, and text-davinci-003 to generate the answer.<p>More examples and explanations here: <a href="https:&#x2F;&#x2F;twitter.com&#x2F;rileytomasek&#x2F;status&#x2F;1603854647575384067" rel="nofollow">https:&#x2F;&#x2F;twitter.com&#x2F;rileytomasek&#x2F;status&#x2F;1603854647575384067</a>

17 comments

jonathan-adlyover 2 years ago
I did the same for the FDA drug label database and 100% believe that this the future for search. Semantic search layer for context then the large language layer for human answers.<p>Tip - you don’t actually need GPT-3 level embedding for a decent semantic search. Sentence transformers paired with one of their models is good enough.<p>I like this: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;sentence-transformers&#x2F;multi-qa-MiniLM-L6-cos-v1" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;sentence-transformers&#x2F;multi-qa-MiniLM...</a> - since it’s very light.<p>Also, perhaps I am an idiot but I just used Postgres array field to store my embeddings array to keep things simple and free.
评论 #34041063 未加载
评论 #34039580 未加载
arcturus17over 2 years ago
Holy f**ing s**t, this is amazing!<p>The UX is gorgeous, simple and snappy. I remember a few of Huberman&#x27;s podcasts so I typed a few questions and the answers were spot on.<p>I&#x27;ll be following you and your work, Riley.
评论 #34033525 未加载
doo_daaover 2 years ago
This is an amazing piece of work and as others have said, the site and the UI are perfect.<p>On a side note, Huberman Labs bothers me. I was an avid listener to the early episodes. As I have ADHD, some of his explanations of the brain chemistry involved in attention and motivation were fascinating. But in one of the early-ish episodes he said some completely ridiculous about acupuncture (that it worked) that makes me think he has no real critical thinking skills.<p>I hope anyone out there listening to him and thinking about applying any of the approaches he talks about just takes the time to see whether any other sources say they have real-world effects.<p>To the credit of the author, this tool highlights the exact thing I&#x27;m talking about. Try searching for...<p>&quot;How does acupuncture work?&quot;<p>&quot;Acupuncture involves taking needles and sometimes electricity and or heat as well and stimulating particular locations on the body. Through these maps of stimulation that have been developed over thousands of years, mostly in Asia, acupuncture can reduce inflammation in the body by stimulating the body in particular ways at particular sites on the body, liberating certain cells and molecules that enhance the function of the immune system and potentially can be used to combat different types of infection.&quot;
评论 #34036413 未加载
评论 #34036566 未加载
twojacobtwoover 2 years ago
This is excellent! I have only recently begun listening to Huberman Lab and my biggest issue has been that I usually don&#x27;t have an opportunity to write down most of the suggestions while I&#x27;m listening.<p>I&#x27;ve only done a single search with the tool so far, but it immediately returned the details that I was hoping for, along with context and other relevant mentions of the search terms.<p>Thank you kindly for making and sharing this.
评论 #34032167 未加载
abrichrover 2 years ago
&gt; What are the parts of the brain that become de-synchronized in the ADHD brain?<p>&gt;&gt; The default mode network and the task networks become de-synchronized in the ADHD brain.<p>&gt; What are the three parts of the brain that become de-synchronized in the ADHD brain?<p>&gt;&gt; The default mode network, the task networks, and the dopamine circuits.<p>From <a href="https:&#x2F;&#x2F;youtu.be&#x2F;hFL6qRIJZ_Y?t=1714" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;hFL6qRIJZ_Y?t=1714</a>:<p>&gt; An area called the dorsolateral prefrontal cortex ... the posterior cingulate cortex, and ... the lateral parietal lobe ... these are three brain areas that normally are synchronized in their activities ... that&#x27;s how it is in a typical person. In a person with ADHD ... these brain areas are not playing well with each other.<p>I wonder if part of the problem might be the usage of text to speech. Did you consider scraping the transcriptions instead? e.g. with <a href="https:&#x2F;&#x2F;github.com&#x2F;jdepoix&#x2F;youtube-transcript-api">https:&#x2F;&#x2F;github.com&#x2F;jdepoix&#x2F;youtube-transcript-api</a>
评论 #34033164 未加载
lr4444lrover 2 years ago
I was just thinking the other day how I&#x27;d LOVE to have a way to get a summary of all of the experts&#x27; opinions Huberman has had opine on a given supplement. This goes beyond my expectations. Great work!
lemmingover 2 years ago
This is great. Since I also found the discoverability of podcasts annoying, I wrote a tool to download the Huberman Lab transcripts and convert them to an ebook: <a href="https:&#x2F;&#x2F;github.com&#x2F;cmf&#x2F;huberman">https:&#x2F;&#x2F;github.com&#x2F;cmf&#x2F;huberman</a>. They still take a while to read though!
abhinavsharmaover 2 years ago
this is amazing, thank you for building this, i was literally in the process of doing this with the same stack but as a chat bot.<p>would you be open sourcing soon? totally understand if you want to keep it private but if you are open sourcing there’s a few other podcasts i’m interested in running this on for myself, like some parenting ones.
DeWildeover 2 years ago
This is pretty amazing. Is this approach documented or explained anywhere?<p>I have some ideas of my own that I would love to implement similarly to this and it would help to know how to get started.
评论 #34036698 未加载
评论 #34037418 未加载
solardevover 2 years ago
Sorry for the ignorant question, but who is Huberman Lab and why should we care? What drove you to make an AI interface for it?
niemal_devover 2 years ago
This is so well done, thank you for your contribution. An open-source of the whole approach would be greatly appreciated as well!
Ozzie_osmanover 2 years ago
Big fan of Huberman Labs. Excited to try this out!
layer8over 2 years ago
Just a heads up that the styling and the JS doesn&#x27;t work on Firefox.
评论 #34033490 未加载
abrichrover 2 years ago
Congratulations on launching! Can you please share your OpenAI API costs?
评论 #34033182 未加载
yewenjieover 2 years ago
Can one generate the answers using text-embedding-ada-002 as well?
评论 #34037476 未加载
krashidovover 2 years ago
This is a really amazing application of GPT. Did you fine tune a gpt3 model? If so, how did you implement its ability to say “I don’t know?”
评论 #34033532 未加载
bilsbieover 2 years ago
What do you mean by embedding?
评论 #34034178 未加载