chore: hostname AZLT124-L changed to AZ-LT-NIX

This commit is contained in:
2026-04-01 11:21:00 +02:00
parent 57a371392a
commit c66acd787a
19 changed files with 17 additions and 19 deletions

View File

@@ -0,0 +1,23 @@
{
m3ta.mem0 = {
enable = false;
port = 8000;
host = "127.0.0.1";
# LLM Configuration
llm = {
provider = "openai";
apiKeyFile = "/var/lib/mem0/openai-api-key-1"; # Use agenix or sops-nix
};
# Vector Storage Configuration
vectorStore = {
provider = "qdrant"; # or "chroma", "pinecone", etc.
config = {
host = "localhost";
port = 6333;
collection_name = "mem0_alice";
};
};
};
}