Hello everyone,
I’m creating an assistant which helps me extract questions from a textbook for a given topic.
I’m a bit confused which would be the better approach:
-
I create a vector store with my textbooks (I’ve three of them, 10 MB each). Then I ask the assistant to get the questions for a specific topic after reading the vector store.
-
I pass the text from the index of each of the textbooks and then ask chatgpt to return the page numbers for the lessons which are relevant to the given topic.
Then I extract the text from the given pages and pass into the prompt asking chatgpt to extract the questions.
(Since each lesson is a different topic, and none are more than 30 pages long, I don’t see context window being an issue with this approach).
I’m kind of leaning towards 2 because, the assistant doesn’t show what chunks are retrieved from the vector store and I fear chatGPT will add it’s own twist to the questions before returning them.
I’m new to assistants and would greatly appreciate everyone’s feedback.
Thanks for your time!