Tsovak Sahakyan

Results 2 comments of Tsovak Sahakyan

hey @theoneLee, try to replace `protoc -I=. ...` to `protoc -I=. -I$(GOPATH)/src ...` in the makefile

it is just not working without FastAPI dependency ``` chain = index.as_query_engine( chat_mode=ChatMode.BEST, memory=memory, streaming=True, vector_store_query_mode=VectorStoreQueryMode.DEFAULT, similarity_top_k=1, text_qa_template=text_qa_template, refine_template=refine_template, ) streaming_response = chain.query(user_input) for chunk in streaming_response.response_gen: yield f"{chunk}" ```...