File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " mem0ai"
7- version = " 0.1.112 "
7+ version = " 0.1.113 "
88description = " Long-term memory for AI Agents"
99authors = [
1010 {
name =
" Mem0" ,
email =
" [email protected] " }
You can’t perform that action at this time.
0 commit comments