feat: lite deep researcher implementation

This commit is contained in:
He Tao
2025-04-07 16:25:55 +08:00
commit 03798ded08
58 changed files with 4242 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
.PHONY: lint format install-dev serve test coverage
install-dev:
uv pip install -e ".[dev]" && uv pip install -e ".[test]"
format:
uv run black --preview .
lint:
uv run black --check .
serve:
uv run server.py
test:
uv run pytest tests/
coverage:
uv run pytest --cov=src tests/ --cov-report=term-missing