From b7c0fbec71a090f66bf7fddbad86abac7115aef8 Mon Sep 17 00:00:00 2001 From: Aneesh Durg Date: Thu, 9 Apr 2026 19:54:46 -0500 Subject: [PATCH] use primary_model instead of model for ollama config Previously the ollama example in the readme specified the model with the key "model". This would cause openevolve to find an empty list of models. Changing the key to "primary_model" fixes it. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 740909f5e5..a5e3b0aa83 100644 --- a/README.md +++ b/README.md @@ -327,7 +327,8 @@ export OPENAI_API_KEY="your-gemini-api-key" # config.yaml llm: api_base: "http://localhost:11434/v1" # Ollama - model: "codellama:7b" + api_key: "ollama" + primary_model: "codellama:7b" ```