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 <danielchalef@users.noreply.github.com>
This commit is contained in:
claude[bot] 2025-07-15 21:09:46 +00:00
parent 0de2812eb6
commit 566dbb5273

View file

@ -240,7 +240,7 @@ class Graphiti:
return 'falkordb' return 'falkordb'
# Embedder providers # Embedder providers
elif 'voyage' in class_name: elif 'voyage' in class_name:
return 'voyage' return 'voyageai'
else: else:
return 'unknown' return 'unknown'