Add app_id

Signed-off-by: Andy Kwok <andy.kwok@improving.com>
This commit is contained in:
Andy Kwok 2025-08-01 17:40:08 -07:00
parent 06c4262cc7
commit ae8fc7f0c9

View file

@ -13,6 +13,7 @@ from cognee.infrastructure.databases.graph.graph_db_interface import (
)
from cognee.modules.storage.utils import JSONEncoder
from cognee.infrastructure.engine import DataPoint
from botocore.config import Config
from .exceptions import (
NeptuneAnalyticsConfigurationError,
@ -107,6 +108,9 @@ class NeptuneGraphDB(GraphDBInterface):
# Initialize the Neptune Analytics Graph client
client_config = {
"graph_identifier": self.graph_id,
"config": Config(
user_agent_appid='Cognee'
)
}
# Add AWS credentials if provided
if self.region: