fix: gitignore

This commit is contained in:
mayo
2025-01-26 14:46:50 +00:00
parent de3a5a76f6
commit b286be40bb
2 changed files with 4 additions and 6 deletions
+1
View File
@@ -27,6 +27,7 @@ venv/
env/
ENV/
.env
.venv/
# IDEs and Editors
.idea/
+3 -6
View File
@@ -103,13 +103,10 @@ pip install psycopg[binary]
```
Then run the file again.
```bash
pip install setuptools
```
alternatives:
If you're having issues connecting to postgres via docker, you can use try some alernative vector stores:
If you're having issues connecting to postgres via docker, you can use `Chroma` as an alternative. `Chroma` is an AI-native open-source vector database.
- Use the memory vector store instead: This is a simple vector store that stores vectors in memory. It is not persistent and will be lost when the program is terminated. Here's the API for [Python](https://python.langchain.com/api_reference/core/vectorstores/langchain_core.vectorstores.in_memory.InMemoryVectorStore.html) and docs for [Javascript](https://js.langchain.com/docs/integrations/vectorstores/memory/).
You can install `Chroma` as per the instructions for [Python](https://python.langchain.com/docs/integrations/vectorstores/chroma) or [Javascript](https://js.langchain.com/docs/integrations/vectorstores/chroma/).
- You can also use `Chroma`-- an AI-native open-source vector database. You can install `Chroma` as per the instructions for [Python](https://python.langchain.com/docs/integrations/vectorstores/chroma) or [Javascript](https://js.langchain.com/docs/integrations/vectorstores/chroma/).