c889a57b6b
Test Suites / Build CI Environment (push) Has been cancelled
Test Suites / Basic Tests (push) Has been cancelled
Test Suites / End-to-End Tests (push) Has been cancelled
Test Suites / CLI Tests (push) Has been cancelled
Test Suites / Slow End-to-End Tests (push) Has been cancelled
Test Suites / Graph Database Tests (push) Has been cancelled
Test Suites / Vector DB Tests (push) Has been cancelled
Test Suites / Temporal Graph Test (push) Has been cancelled
Test Suites / Search Test on Different DBs (push) Has been cancelled
Test Suites / Example Tests (push) Has been cancelled
Test Suites / Notebook Tests (push) Has been cancelled
Test Suites / OS and Python Tests Ubuntu (push) Has been cancelled
Test Suites / OS and Python Tests Extended (push) Has been cancelled
Test Suites / LLM Test Suite (push) Has been cancelled
Test Suites / S3 File Storage Test (push) Has been cancelled
Test Suites / Run Integration Tests (push) Has been cancelled
Test Suites / MCP Tests (push) Has been cancelled
Test Suites / Docker Compose Test (push) Has been cancelled
Test Suites / Docker CI test (push) Has been cancelled
Test Suites / Relational DB Migration Tests (push) Has been cancelled
Test Suites / Distributed Cognee Test (push) Has been cancelled
Test Suites / DB Examples Tests (push) Has been cancelled
Test Suites / Test Completion Status (push) Has been cancelled
Test Suites / Claude Code Review (push) Has been cancelled
Test Suites / basic checks (push) Has been cancelled
build | Build and Push Cognee MCP Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
build | Build and Push Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.11) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.12) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (kuzu, kuzu) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (neo4j, neo4j) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Examples (push) Has been cancelled
Weighted Edges Tests / Code Quality for Weighted Edges (push) Has been cancelled
60 lines
1.7 KiB
Python
60 lines
1.7 KiB
Python
import asyncio
|
|
import cognee
|
|
|
|
import os
|
|
|
|
|
|
async def main():
|
|
# Get file path to document to process
|
|
from pathlib import Path
|
|
|
|
current_directory = Path(__file__).resolve().parent
|
|
file_path_artificial = os.path.join(
|
|
current_directory, "test_data", "artificial-intelligence.pdf"
|
|
)
|
|
file_path_png = os.path.join(current_directory, "test_data", "example_copy.png")
|
|
file_path_pptx = os.path.join(current_directory, "test_data", "example.pptx")
|
|
|
|
await cognee.prune.prune_data()
|
|
await cognee.prune.prune_system(metadata=True)
|
|
|
|
# Import necessary converter, and convert file to DoclingDocument format
|
|
from docling.document_converter import DocumentConverter
|
|
|
|
converter = DocumentConverter()
|
|
|
|
# Test ingestion of DoclingDocument with various file types
|
|
|
|
result = converter.convert(file_path_artificial)
|
|
await cognee.add(result.document)
|
|
|
|
result = converter.convert(file_path_png)
|
|
await cognee.add(result.document)
|
|
|
|
# Test docling loader
|
|
|
|
await cognee.add(file_path_pptx)
|
|
|
|
await cognee.cognify()
|
|
|
|
answer = await cognee.search("Tell me about Artificial Intelligence.")
|
|
assert len(answer) != 0
|
|
|
|
answer = await cognee.search("Do programmers change light bulbs?")
|
|
assert len(answer) != 0
|
|
lowercase_answer = answer[0]["search_result"][0].lower()
|
|
assert ("no" in lowercase_answer) or ("none" in lowercase_answer)
|
|
|
|
answer = await cognee.search("What colours are there in the presentation table?")
|
|
assert len(answer) != 0
|
|
lowercase_answer = answer[0]["search_result"][0].lower()
|
|
assert (
|
|
("red" in lowercase_answer)
|
|
and ("blue" in lowercase_answer)
|
|
and ("green" in lowercase_answer)
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|