You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use following dockerfile to build the postgresql image with pgvector&zhparser extension.
ARG PG_MAJOR=16
FROM postgres:$PG_MAJOR as builder
RUN set -ex
&& apt-get update
&& apt-get install -y --no-install-recommends build-essential git ntp ca-certificates autoconf automake libtool m4 postgresql-server-dev-$PG_MAJOR
RUN set -ex
&& git clone https://github.com/hightman/scws.git
&& cd scws
&& touch README;aclocal;autoconf;autoheader;libtoolize;automake --add-missing
&& ./configure
&& make install
rag 中文 混合搜索需要vector 和 文本搜索
https://docs.llamaindex.ai/en/latest/examples/vector_stores/postgres/
pgvector项目已经提供了pgvector镜像
The text was updated successfully, but these errors were encountered: