From 566dbb5273a47c2347634f73f2d38151ee725714 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:09:46 +0000 Subject: [PATCH] fix: update provider type mapping for VoyageAI to use ''voyageai'' instead of ''voyage'' This ensures consistency between telemetry provider name and the actual extra name used in pyproject.toml, preventing confusion about which extra to install. Co-authored-by: Daniel Chalef --- graphiti_core/graphiti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphiti_core/graphiti.py b/graphiti_core/graphiti.py index da5a86c1..13ff5efc 100644 --- a/graphiti_core/graphiti.py +++ b/graphiti_core/graphiti.py @@ -240,7 +240,7 @@ class Graphiti: return 'falkordb' # Embedder providers elif 'voyage' in class_name: - return 'voyage' + return 'voyageai' else: return 'unknown'