I am trying to work with Chroma vector database from langchain but get -1073741819 (0xC0000005)
loader = UnstructuredMarkdownLoader("./test.md")
docs = loader.load()
text_spliter = ChineseTextSplitter(chunk_size=1000, chunk_overlap=200, add_start_index=True)
splits = text_spliter.split_documents(docs)
embedding_func = XinferenceEmbeddings(
server_url="http://127.0.0.1:9997",
model_uid="bge-large-zh-v1.5"
)
vector_store = Chroma.from_documents(splits, embedding_func)
please tell me the way to solve this problem
New contributor
user26481194 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.