Merge branch 'dev' into feature/cog-3142-agentic-use-case-kuzu-lock-fix-redis-integration

This commit is contained in:
hajdul88 2025-10-14 16:44:34 +02:00 committed by GitHub
commit 41db62dd41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1591 additions and 1273 deletions

View file

@ -38,4 +38,5 @@ dev = [
allow-direct-references = true
[project.scripts]
cognee-mcp = "src:main"
cognee = "src:main"
cognee-mcp = "src:main_mcp"

2857
cognee-mcp/uv.lock generated

File diff suppressed because it is too large Load diff

View file

@ -20,7 +20,7 @@ logger = get_logger(__name__)
try:
from playwright.async_api import async_playwright
except ImportError:
logger.error(
logger.warning(
"Failed to import playwright, make sure to install using pip install playwright>=1.9.0"
)
async_playwright = None
@ -28,7 +28,7 @@ except ImportError:
try:
from protego import Protego
except ImportError:
logger.error("Failed to import protego, make sure to install using pip install protego>=0.1")
logger.warning("Failed to import protego, make sure to install using pip install protego>=0.1")
Protego = None