mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
2. use tavily from`langchain-tavily` rather than the older one from `langchain-community` Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
23 lines
523 B
Makefile
23 lines
523 B
Makefile
.PHONY: lint format install-dev serve test coverage
|
|
|
|
install-dev:
|
|
uv pip install -e ".[dev]" && uv pip install -e ".[test]"
|
|
|
|
format:
|
|
uv run ruff format --config pyproject.toml .
|
|
|
|
lint:
|
|
uv run ruff check --fix --select I --config pyproject.toml .
|
|
|
|
serve:
|
|
uv run server.py --reload
|
|
|
|
test:
|
|
uv run pytest tests/
|
|
|
|
langgraph-dev:
|
|
uvx --refresh --from "langgraph-cli[inmem]" --with-editable . --python 3.12 langgraph dev --allow-blocking
|
|
|
|
coverage:
|
|
uv run pytest --cov=src tests/ --cov-report=term-missing --cov-report=xml
|