mirror of
https://github.com/langchain-ai/langchain-extract.git
synced 2026-07-01 20:24:03 -04:00
1.4 KiB
1.4 KiB
🚧 Under Active Development 🚧
Please expect breaking changes!
🦜📝 LangChain Extract
Set up
Services
The root folder contains a docker compose file which will a launch a postgres instance.
docker compose up
At the time of writing, the app wasn't using postgres yet!
App
cd [root]/backend
Set up the environment using poetry:
poetry install --with lint,dev,test
Verify that unit tests pass (they probably wont?)
Test and format
Testing and formatting is done using a Makefile inside [root]/backend
make format
make test
Launch Server
From [root]/backend:
python -m server.main
Example client
See docs/source/notebooks for an example client.