Skip to content

Commit

Permalink
Merge pull request #1 from bongsang/bongsang-patch-1
Browse files Browse the repository at this point in the history
docs: Update VectorStoreTabs.js
  • Loading branch information
bongsang authored Dec 25, 2024
2 parents 5991b45 + 71d26ca commit dbd5c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/theme/VectorStoreTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function VectorStoreTabs(props) {
{
value: "PGVector",
label: "PGVector",
text: `from langchain_postgres import PGVector\n${useFakeEmbeddings ? fakeEmbeddingsString : ""}\n${vectorStoreVarName} = PGVector(\n embedding=embeddings,\n collection_name="my_docs",\n connection="postgresql+psycopg://...",\n)`,
text: `from langchain_postgres import PGVector\n${useFakeEmbeddings ? fakeEmbeddingsString : ""}\n${vectorStoreVarName} = PGVector(\n embeddings=embeddings,\n collection_name="my_docs",\n connection="postgresql+psycopg://...",\n)`,
packageName: "langchain-postgres",
default: false,
},
Expand Down

0 comments on commit dbd5c80

Please sign in to comment.