I’d love to have a ChatGPT that was also trained on all of the pages from my “second brain,” Roam Research. Imagine, I could ask it questions about myself, my friends, and my business. It would in many ways know me better than me from reading all my journal entries. How many years are we away from something like this?
Zero. I’ve done this with google drive and GPT-3 (thus quite limited in prompt length). The biggest hurdle for your requirements is the nonexistent public API for ChatGPT and Roam Research.
I used GPT to build a search tool for my second brain note-taking system
51–60 of 103 posts
Re: I used GPT to build a search tool for my second brain note-taking system
#52Earlier quoted context omitted.
I just put my notes into ElasticSearch and use the TextAnalysis processor and get a lot of the same functionality.
This is interesting. How effective was this?
Re: I used GPT to build a search tool for my second brain note-taking system
#53Earlier quoted context omitted.
MS is very close to this. they have chatGPT listening to meetings and taking notes then adding tasks to attendee calendars...
Link? Because I’m gonna need this.
but I've seen more detailed capability... I can't remember if It was under NDA though. I cant seem to find it with a quick search though
Re: I used GPT to build a search tool for my second brain note-taking system
#54Earlier quoted context omitted.
The way I read this, in a world with machines that can travel at high speeds, people still watch professional runners because they are interesting to watch, and we’re inspired by human achievement. For similar reasons, it doesn’t really matter that computers are better at chess than us.
The cool thing I think is that we watch both, running and race cars.
Re: I used GPT to build a search tool for my second brain note-taking system
#55Earlier quoted context omitted.
The way I read this, in a world with machines that can travel at high speeds, people still watch professional runners because they are interesting to watch, and we’re inspired by human achievement. For similar reasons, it doesn’t really matter that computers are better at chess than us.
The cool thing I think is that we watch both, running and race cars.
Re: I used GPT to build a search tool for my second brain note-taking system
#56These "augmented intelligence" applications are so exciting to me. I'm not as interested in autonomous artificial intelligence. Computers are tools to make my life easier, not meant to lead their own lives! There's a big up-front cost of building a notes database for this application, but it illustrates the point nicely: encode a bunch of data ("memories"), and use an AI like GPT to retrieve information ("remembering…
In chess we had a tiny window of a few years when humans could use the help of computers to play the world's best chess. By 2000, computers were far better than humans and the gap has increased. Chess players are now entertainers, like all us humans are destined to spend our time doing.
Re: I used GPT to build a search tool for my second brain note-taking system
#57Re: I used GPT to build a search tool for my second brain note-taking system
#58Re: I used GPT to build a search tool for my second brain note-taking system
#59Earlier quoted context omitted.
When using SBERT instead of gpt for this use case, is it paired with some sort of vector database or just all done in code/memory?
You’d want persistence, since the embedding process takes some time. But you don’t need to go all Pinecone on this. There is FAISS, and there is hnswlib, for example. Like SQLite for vector search.
Re: I used GPT to build a search tool for my second brain note-taking system
#60I've been thinking of using GPT or similar LLMs to extract flashcards to use with my spaced repetition project ( https://github.com/trane-project/trane/ ). As in you give it a book and it creates the flashcards for you and the dependencies between the lessons. I played around with chatgpt and it worked pretty well. I have a lot of other things in my plate to get around first (including starting a math curriculum) but…