2024-02-08 03:06:09 +00:00
|
|
|
# docker-compose to make it easier to spin up integration tests.
|
|
|
|
# Services should use NON standard ports to avoid collision with
|
community: Add document manager and mongo document manager (#17320)
- **Description:**
- Add DocumentManager class, which is a nosql record manager.
- In order to use index and aindex in
libs/langchain/langchain/indexes/_api.py, DocumentManager inherits
RecordManager.
- Also I added the MongoDB implementation of Document Manager too.
- **Dependencies:** pymongo, motor
<!-- Thank you for contributing to LangChain!
Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.
Replace this entire comment with:
- **Description:** Add DocumentManager class, which is a no sql record
manager. To use index method and aindex method in indexes._api.py,
Document Manager inherits RecordManager.Add the MongoDB implementation
of Document Manager.
- **Dependencies:** pymongo, motor
Please make sure your PR is passing linting and testing before
submitting. Run `make format`, `make lint` and `make test` from the root
of the package you've modified to check this locally.
See contribution guidelines for more information on how to write/run
tests, lint, etc: https://python.langchain.com/docs/contributing/
If you're adding a new integration, please include:
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.
If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
-->
---------
Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
2024-02-24 02:32:52 +00:00
|
|
|
# any existing services that might be used for development.
|
|
|
|
# ATTENTION: When adding a service below use a non-standard port
|
|
|
|
# increment by one from the preceding port.
|
|
|
|
# For credentials always use `langchain` and `langchain` for the
|
|
|
|
# username and password.
|
2024-02-08 03:06:09 +00:00
|
|
|
version: "3"
|
|
|
|
name: langchain-tests
|
|
|
|
|
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: redis/redis-stack-server:latest
|
|
|
|
# We use non standard ports since
|
|
|
|
# these instances are used for testing
|
|
|
|
# and users may already have existing
|
|
|
|
# redis instances set up locally
|
|
|
|
# for other projects
|
|
|
|
ports:
|
|
|
|
- "6020:6379"
|
|
|
|
volumes:
|
|
|
|
- ./redis-volume:/data
|
2024-02-16 04:03:22 +00:00
|
|
|
graphdb:
|
|
|
|
image: graphdb
|
|
|
|
ports:
|
|
|
|
- "6021:7200"
|
community: Add document manager and mongo document manager (#17320)
- **Description:**
- Add DocumentManager class, which is a nosql record manager.
- In order to use index and aindex in
libs/langchain/langchain/indexes/_api.py, DocumentManager inherits
RecordManager.
- Also I added the MongoDB implementation of Document Manager too.
- **Dependencies:** pymongo, motor
<!-- Thank you for contributing to LangChain!
Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.
Replace this entire comment with:
- **Description:** Add DocumentManager class, which is a no sql record
manager. To use index method and aindex method in indexes._api.py,
Document Manager inherits RecordManager.Add the MongoDB implementation
of Document Manager.
- **Dependencies:** pymongo, motor
Please make sure your PR is passing linting and testing before
submitting. Run `make format`, `make lint` and `make test` from the root
of the package you've modified to check this locally.
See contribution guidelines for more information on how to write/run
tests, lint, etc: https://python.langchain.com/docs/contributing/
If you're adding a new integration, please include:
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.
If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
-->
---------
Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
2024-02-24 02:32:52 +00:00
|
|
|
mongo:
|
|
|
|
image: mongo:latest
|
|
|
|
container_name: mongo_container
|
|
|
|
ports:
|
|
|
|
- "6022:27017"
|
|
|
|
environment:
|
|
|
|
MONGO_INITDB_ROOT_USERNAME: langchain
|
|
|
|
MONGO_INITDB_ROOT_PASSWORD: langchain
|
2024-02-28 21:02:28 +00:00
|
|
|
postgres:
|
|
|
|
image: postgres:16
|
|
|
|
environment:
|
|
|
|
POSTGRES_DB: langchain
|
|
|
|
POSTGRES_USER: langchain
|
|
|
|
POSTGRES_PASSWORD: langchain
|
|
|
|
ports:
|
|
|
|
- "6023:5432"
|
|
|
|
command: |
|
|
|
|
postgres -c log_statement=all
|
|
|
|
healthcheck:
|
|
|
|
test:
|
|
|
|
[
|
|
|
|
"CMD-SHELL",
|
|
|
|
"psql postgresql://langchain:langchain@localhost/langchain --command 'SELECT 1;' || exit 1",
|
|
|
|
]
|
|
|
|
interval: 5s
|
|
|
|
retries: 60
|
|
|
|
volumes:
|
|
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
postgres_data:
|