Thanks , I think I'm close...i was able to store a document in pinecone and retrieve the index, but I am confused by the gpt_index syntax around retrieval. For example if I want to do this in two separate API calls. For now I have something like this, which looks like it still needs to load the original documents? I am not a python dev so i may be missing somthing obvious here
index = pinecone.Index("<pinecone-index-name>")
index2 = GPTPineconeIndex(**documents**, pinecone_index=index)
response = index2.query("<my query string>?")