Skip to content

Commit 5a1083b

Browse files
authored
Fix: Gemini embedder config and version bump -> 0.1.113 (#3070)
1 parent ac085db commit 5a1083b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

mem0/configs/embeddings/base.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def __init__(
3131
memory_add_embedding_type: Optional[str] = None,
3232
memory_update_embedding_type: Optional[str] = None,
3333
memory_search_embedding_type: Optional[str] = None,
34+
# Gemini specific
35+
output_dimensionality: Optional[str] = None,
3436
# LM Studio specific
3537
lmstudio_base_url: Optional[str] = "http://localhost:1234/v1",
3638
# AWS Bedrock specific
@@ -94,6 +96,9 @@ def __init__(
9496
self.memory_update_embedding_type = memory_update_embedding_type
9597
self.memory_search_embedding_type = memory_search_embedding_type
9698

99+
# Gemini specific
100+
self.output_dimensionality = output_dimensionality
101+
97102
# LM Studio specific
98103
self.lmstudio_base_url = lmstudio_base_url
99104

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "mem0ai"
7-
version = "0.1.112"
7+
version = "0.1.113"
88
description = "Long-term memory for AI Agents"
99
authors = [
1010
{ name = "Mem0", email = "[email protected]" }

0 commit comments

Comments
 (0)