Skip to content

Commit 6ef22f1

Browse files
Thomas Tupperclaude
authored andcommitted
chore: update default MEM0_GRAPH_LLM_MODEL from gpt-4o-mini to gpt-4.1-mini
gpt-4.1-mini is confirmed available and is the newer model in the same tier. Updated across all compose files and .env.example. Also set an explicit default value in .env.example (was previously blank). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e9626ec commit 6ef22f1

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ QDRANT_PORT=6333
3232
# Graph memory (Neo4j) — optional.
3333
# Set NEO4J_URL + NEO4J_PASSWORD to enable. Leave blank to disable.
3434
# NEO4J_AUTH must match NEO4J_PASSWORD (format: neo4j/<password>).
35-
# MEM0_GRAPH_LLM_MODEL: recommended gpt-4o-mini (hosted) or Qwen2.5-14B-Instruct (local).
35+
# MEM0_GRAPH_LLM_MODEL: recommended gpt-4.1-mini (hosted) or Qwen2.5-14B-Instruct (local).
3636
NEO4J_AUTH=neo4j/changeme
3737
NEO4J_URL=bolt://neo4j:7687
3838
NEO4J_USERNAME=neo4j
3939
NEO4J_PASSWORD=changeme
40-
MEM0_GRAPH_LLM_MODEL=
40+
MEM0_GRAPH_LLM_MODEL=gpt-4.1-mini

compose.graph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ services:
4545
NEO4J_URL: ${NEO4J_URL:-}
4646
NEO4J_USERNAME: ${NEO4J_USERNAME:-neo4j}
4747
NEO4J_PASSWORD: ${NEO4J_PASSWORD:-}
48-
MEM0_GRAPH_LLM_MODEL: ${MEM0_GRAPH_LLM_MODEL:-gpt-4o-mini}
48+
MEM0_GRAPH_LLM_MODEL: ${MEM0_GRAPH_LLM_MODEL:-gpt-4.1-mini}
4949
volumes:
5050
- foxmemory_analytics_data:/data
5151
depends_on:

compose.one.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
- NEO4J_URL=${NEO4J_URL:-}
4545
- NEO4J_USERNAME=${NEO4J_USERNAME:-neo4j}
4646
- NEO4J_PASSWORD=${NEO4J_PASSWORD:-}
47-
- MEM0_GRAPH_LLM_MODEL=${MEM0_GRAPH_LLM_MODEL:-gpt-4o-mini}
47+
- MEM0_GRAPH_LLM_MODEL=${MEM0_GRAPH_LLM_MODEL:-gpt-4.1-mini}
4848
volumes:
4949
- foxmemory_store_data:/qdrant/storage
5050
depends_on:

compose.split.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
- NEO4J_URL=${NEO4J_URL:-}
4343
- NEO4J_USERNAME=${NEO4J_USERNAME:-neo4j}
4444
- NEO4J_PASSWORD=${NEO4J_PASSWORD:-}
45-
- MEM0_GRAPH_LLM_MODEL=${MEM0_GRAPH_LLM_MODEL:-gpt-4o-mini}
45+
- MEM0_GRAPH_LLM_MODEL=${MEM0_GRAPH_LLM_MODEL:-gpt-4.1-mini}
4646
volumes:
4747
- foxmemory_store_data:/qdrant/storage
4848
depends_on:

0 commit comments

Comments
 (0)