You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+61Lines changed: 61 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -183,6 +183,67 @@ Sample configuration files are available in the `configs/` directory:
183
183
184
184
See the [Configuration Guide](configs/default_config.yaml) for a full list of options.
185
185
186
+
## Artifacts Channel
187
+
188
+
OpenEvolve includes a **artifacts side-channel** that allows evaluators to capture build errors, profiling results, etc. to provide better feedback to the LLM in subsequent generations. This feature enhances the evolution process by giving the LLM context about what went wrong and how to fix it.
189
+
190
+
The artifacts channel operates alongside the traditional fitness metrics.
191
+
192
+
### Example: Compilation Failure Feedback
193
+
194
+
```python
195
+
from openevolve.evaluation_result import EvaluationResult
0 commit comments