forked from mem0ai/mem0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for configurable embedding model (mem0ai#1627)
Co-authored-by: Dev Khant <[email protected]>
- Loading branch information
Showing
8 changed files
with
88 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from typing import Optional | ||
|
||
from openai import AzureOpenAI | ||
|
||
from mem0.configs.embeddings.base import BaseEmbedderConfig | ||
from mem0.embeddings.base import EmbeddingBase | ||
|
||
class AzureOpenAIEmbedding(EmbeddingBase): | ||
def __init__(self, config: Optional[BaseEmbedderConfig] = None): | ||
super().__init__(config) | ||
|
||
if self.config.model is None: | ||
self.config.model = "text-embedding-3-small" | ||
if self.config.embedding_dims is None: | ||
self.config.embedding_dims = 1536 | ||
self.client = AzureOpenAI() | ||
|
||
def embed(self, text): | ||
""" | ||
Get the embedding for the given text using OpenAI. | ||
Args: | ||
text (str): The text to embed. | ||
Returns: | ||
list: The embedding vector. | ||
""" | ||
text = text.replace("\n", " ") | ||
return ( | ||
self.client.embeddings.create( | ||
input=[text], | ||
model=self.config.model | ||
) | ||
.data[0] | ||
.embedding | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters