mirror of
https://github.com/langchain-ai/langgraph-memory.git
synced 2026-07-21 08:06:14 -04:00
9d1e6c4a4c
Using Pinecone and any model that supports tool binding.
21 lines
366 B
Makefile
21 lines
366 B
Makefile
.PHONY: tests lint format evals
|
|
|
|
|
|
evals:
|
|
LANGCHAIN_TEST_CACHE=tests/evals/cassettes poetry run python -m pytest -p no:asyncio --max-asyncio-tasks 4 tests/evals
|
|
|
|
lint:
|
|
poetry run ruff check .
|
|
poetry run mypy .
|
|
|
|
format:
|
|
ruff check --select I --fix
|
|
poetry run ruff format .
|
|
poetry run ruff check . --fix
|
|
|
|
build:
|
|
poetry build
|
|
|
|
publish:
|
|
poetry publish --dry-run
|