Files
langchain-extract/README.md
T
Eugene Yurtsev f5acd6fbe2 Initial draft
2024-02-29 14:31:19 -05:00

1.4 KiB

🚧 Under Active Development 🚧

Please expect breaking changes!

🦜📝 LangChain Extract

CI License: MIT Twitter Open Issues

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.