From 1508c9810bc9cbda3ee0eba106ad141f06936418 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 19 Feb 2025 15:44:18 +0000 Subject: [PATCH] test: Add embedder_config to contextual memory test Co-Authored-By: Joe Moura --- tests/crew_test.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/crew_test.py b/tests/crew_test.py index 398be37de..bdba96ba2 100644 --- a/tests/crew_test.py +++ b/tests/crew_test.py @@ -2322,6 +2322,12 @@ def test_using_contextual_memory(): agents=[math_researcher], tasks=[task1], memory=True, + embedder_config={ + "provider": "openai", + "config": { + "api_key": "fake-api-key" + } + } ) with patch.object(ContextualMemory, "build_context_for_task") as contextual_mem: