MoonS11
MoonS11
我也碰到了这个问题,请问怎么解决
啊,我解决了,是因为启动端口和别的端口冲突了,修改启动端口就行了
我也遇到了这个问题,有没有别的解决办法
> access token 模式目前readme中写的那几个反向代理站点都已经不可用了。 我也不确定市面上是否还有可用的反向代理服务了。 很难,我找了两天了还没找到
> 您好 , > > 哇,你居然等了 8 个小时。疯! > > 问候!维德什 I went to sleep after launching my program and waited until the morning to see the results
When using version 2.6.1, I can subclass and override the _from_haystack_to_pg_documents method of PgvectorDocumentStore to add custom fields in the database to db_documents. After updating to version 2.13.1, I found...
This is because I encountered some problems when using PgvectorDocumentStore to write documents into the vector database. I initialized PgvectorDocumentStore: document_store = CustomPgvectorDocumentStore( table_name="my_table", embedding_dimension=1024, vector_function="cosine_similarity", recreate_table=False, search_strategy="hnsw", ) Then...
In version 2.13.1, _from_haystack_to_pg_documents no longer belongs to PgvectorDocumentStore, but in converters.py
The current solution is to inherit PgvectorDocumentStore, rewrite write_documents, and overwrite _from_haystack_to_pg_documents