Vaibhav Kubre

Results 10 comments of Vaibhav Kubre

RetrievalQA chain and ConversationRetrivalChain are also not streaming for me, It does print output to the console in a streaming manner but final output I can stream it just waits...

The std callback only streams to the terminal to actually get its output as of now we just made a new callback class and streamed the output through it. ```python...

Not > > @app.post("/get_gk_query") async def get_query(input_data: QueryInput): question = input_data.question session_id = input_data.session_id if not question: raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Invalid input. Please provide a question.") try: # Load Chroma database...

@netapy Nope, I decided simply write this part using aiohttp and aiographql clients. It's not as clean looking as it might have been with lib itself but wrapping all the...

@netapy Do you mean your entire thread is blocked until it finishes this request? I can't see any issues with the above code. Just calling API with aiohttp should stop...

Is this not available in 1.23? I am still getting errors after following the PQ doc and adding "ASYNC_INDEXING=true"

@rthiiyer82 I've followed this Auto PQ document https://weaviate.io/developers/weaviate/configuration/pq-compression#configure-pq . After enabling PQ using following config. ```json "pq": { "enabled": true, "bitCompression": false, "segments": 0, "centroids": 256, "trainingLimit": 100000, "encoder": {...

Any updates in here?

@abdelr Sorry for not providing the entire context, Thank you for replying. We are not importing any data, Schema and data are already there (And no data has been lost)....