Merge branch 'main' into main-merge-vol5

This commit is contained in:
Igor Ilic 2025-08-14 21:05:09 +02:00
commit b9bcda0343
3 changed files with 11 additions and 3 deletions

View file

@ -1,6 +1,14 @@
name: community | Greetings
on: [pull_request, issues]
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
permissions:
issues: write
pull-requests: write
jobs:
greeting:

View file

@ -57,7 +57,7 @@ class CogneeTestClient:
print(" Some tests may fail without proper LLM API configuration.")
print(" Set OPENAI_API_KEY environment variable for full functionality.")
else:
print(f"✅ API key configured (key ending in: ...{api_key[-4:]})")
print("✅ API key configured.")
# Create temporary test files
self.test_data_dir = tempfile.mkdtemp(prefix="cognee_test_")

View file

@ -74,7 +74,7 @@ def read_kuzu_storage_version(kuzu_db_path: str) -> int:
if kuzu_version_mapping.get(version_code):
return kuzu_version_mapping[version_code]
else:
ValueError("Could not map version_code to proper Kuzu version.")
raise ValueError("Could not map version_code to proper Kuzu version.")
def ensure_env(version: str, export_dir) -> str: