* Bump version from 0.9.0 to 0.9.1 in pyproject.toml and update google-genai dependency to >=0.1.0 * Bump version from 0.9.1 to 0.9.2 in pyproject.toml * Update google-genai dependency version to >=0.8.0 in pyproject.toml * loc file * Update pyproject.toml to version 0.9.3, restructure dependencies, and modify author format. Remove outdated Google API key note from README.md. * upgrade poetry and ruff * Update README.md to include installation instructions for Graphiti with Google Gemini support * fix to deps since peotry doesn't fully implement PEP 735 * Refactor string formatting in various files to use single quotes for consistency and improve readability. This includes updates in agent.ipynb, quickstart.py, multiple prompt files, and ingest.py and retrieve.py modules. * Remove optional dependencies from pyproject.toml to streamline project requirements.
58 lines
1.9 KiB
Python
58 lines
1.9 KiB
Python
"""
|
|
Copyright 2024, Zep Software, Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
"""
|
|
|
|
from collections.abc import Iterable
|
|
|
|
import voyageai # type: ignore
|
|
from pydantic import Field
|
|
|
|
from .client import EmbedderClient, EmbedderConfig
|
|
|
|
DEFAULT_EMBEDDING_MODEL = 'voyage-3'
|
|
|
|
|
|
class VoyageAIEmbedderConfig(EmbedderConfig):
|
|
embedding_model: str = Field(default=DEFAULT_EMBEDDING_MODEL)
|
|
api_key: str | None = None
|
|
|
|
|
|
class VoyageAIEmbedder(EmbedderClient):
|
|
"""
|
|
VoyageAI Embedder Client
|
|
"""
|
|
|
|
def __init__(self, config: VoyageAIEmbedderConfig | None = None):
|
|
if config is None:
|
|
config = VoyageAIEmbedderConfig()
|
|
self.config = config
|
|
self.client = voyageai.AsyncClient(api_key=config.api_key)
|
|
|
|
async def create(
|
|
self, input_data: str | list[str] | Iterable[int] | Iterable[Iterable[int]]
|
|
) -> list[float]:
|
|
if isinstance(input_data, str):
|
|
input_list = [input_data]
|
|
elif isinstance(input_data, list):
|
|
input_list = [str(i) for i in input_data if i]
|
|
else:
|
|
input_list = [str(i) for i in input_data if i is not None]
|
|
|
|
input_list = [i for i in input_list if i]
|
|
if len(input_list) == 0:
|
|
return []
|
|
|
|
result = await self.client.embed(input_list, model=self.config.embedding_model)
|
|
return [float(x) for x in result.embeddings[0][: self.config.embedding_dim]]
|