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
@@ -157,6 +157,67 @@ Sample configuration files are available in the `configs/` directory:
157
157
158
158
See the [Configuration Guide](configs/default_config.yaml) for a full list of options.
159
159
160
+
## Artifacts Channel
161
+
162
+
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.
163
+
164
+
The artifacts channel operates alongside the traditional fitness metrics.
165
+
166
+
### Example: Compilation Failure Feedback
167
+
168
+
```python
169
+
from openevolve.evaluation_result import EvaluationResult
0 commit comments