Solved more nitpick comments

This commit is contained in:
Geoff-Robin 2025-10-06 19:02:11 +05:30
parent 1c0e0f0fe1
commit 54f2580f2d
2 changed files with 2 additions and 2 deletions

View file

@ -150,7 +150,7 @@ async def add(
await cognee.add("https://example.com",extraction_rules=extraction_rules)
# Add a single url and tavily extract ingestion method
Make sure to TAVILY_API_KEY = YOUR_TAVILY_API_KEY as a environment variable
Make sure to set TAVILY_API_KEY = YOUR_TAVILY_API_KEY as a environment variable
await cognee.add("https://example.com")
# Add multiple urls

View file

@ -36,7 +36,7 @@ async def fetch_page_content(
extraction_rules are needed.
Returns:
Dict[str, Union[str, Dict[str, str]]]: A dictionary mapping each URL to its
Dict[str, str]: A dictionary mapping each URL to its
extracted content (as a string for BeautifulSoup or a dict for Tavily).
Raises: