We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f46233d commit 095a5cbCopy full SHA for 095a5cb
openevolve/llm/ensemble.py
@@ -11,7 +11,7 @@
11
from openevolve.llm.openai import OpenAILLM
12
from openevolve.config import LLMModelConfig
13
14
-# logger = logging.getLogger(__name__)
+logger = logging.getLogger(__name__)
15
16
17
class LLMEnsemble:
@@ -28,7 +28,7 @@ def __init__(self, models_cfg: List[LLMModelConfig]):
28
total = sum(self.weights)
29
self.weights = [w / total for w in self.weights]
30
31
- logging.info(
+ logger.info(
32
f"Initialized LLM ensemble with models: "
33
+ ", ".join(
34
f"{model.name} (weight: {weight:.2f})"
0 commit comments