Quick question. To send an initial system prompt, is it as simple as just sending string as a query and then ignoring the first response? Or is there a specific method or other functions I need to use to send the initial system prompt ? Thanks
Hello, I am currently using a ListIndex with a chunk size of 8000 tokens. I learned that if we use a ListIndex every chunk if indexed during query time and not indexed before during set up (like VecotrStoreIndex). My question is does this indexing for ListIndex happen during every query or is it only during first query and then the index is stored? thanks
I have a bunch of vectorindices and I am using a routerqueryengine and a pedantic multi selector that directs the query to one or more vectorstoreindices. Is there a way to run these queries to different vectorstoreindices in parallel thus making the whole process faster? Thanks