loader = GithubRepositoryReader(...)
but I do not know how to load the documents returned into an index. docs = loader.load_data(branch="html") index = GPTSimpleVectorIndex().from_documents(docs)
ValueError: One of documents or index_struct must be provided.
index = GPTSimpleVectorIndex([]) #.from_documents(docs) for doc in docs: #print(doc.extra_info) index.insert(doc)