Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringlengths
10
10
domain
stringclasses
5 values
subtype
stringclasses
25 values
title
stringclasses
75 values
difficulty
stringclasses
2 values
prompt
stringclasses
15 values
chain_of_thought
stringclasses
54 values
self_critique
stringclasses
25 values
final_output
stringclasses
25 values
code
stringclasses
25 values
tags
listlengths
5
5
quality_score
float64
0.92
0.92
quality_checks
listlengths
5
5
seed-00001
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00002
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00003
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00004
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00005
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00006
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00007
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00008
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00009
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00010
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00011
self_rewriting_ai
AST self-patch
AST self-patch - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00012
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00013
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00014
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00015
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00016
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00017
self_rewriting_ai
AST self-patch
AST self-patch - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00018
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00019
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00020
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00021
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00022
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00023
self_rewriting_ai
AST self-patch
AST self-patch - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00024
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00025
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00026
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00027
self_rewriting_ai
AST self-patch
AST self-patch - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00028
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00029
self_rewriting_ai
AST self-patch
AST self-patch - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00030
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00031
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00032
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00033
self_rewriting_ai
AST self-patch
AST self-patch - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00034
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00035
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00036
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00037
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00038
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00039
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00040
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00041
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00042
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00043
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00044
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00045
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00046
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00047
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00048
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00049
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00050
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00051
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00052
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00053
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00054
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00055
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00056
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00057
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00058
self_rewriting_ai
AST self-patch
AST self-patch - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00059
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00060
self_rewriting_ai
AST self-patch
AST self-patch - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00061
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00062
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00063
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00064
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00065
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00066
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00067
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00068
self_rewriting_ai
AST self-patch
AST self-patch - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00069
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00070
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00071
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00072
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00073
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00074
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00075
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00076
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00077
self_rewriting_ai
AST self-patch
AST self-patch - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00078
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00079
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00080
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00081
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Create Gödel Agent style self-modifier: treat own code as da
advanced
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00082
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00083
self_rewriting_ai
AST self-patch
AST self-patch - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00084
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00085
self_rewriting_ai
Darwin Godel Machine evolution
Darwin Godel Machine evolution - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Darwin Godel Machine evolution improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Darwin Godel Machine evolution with before/after metric, passes unit tests, stores as reusable skill.
# Darwin Godel Machine evolution import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Darwin Godel Machine evolution return ast.unparse(...
[ "self_rewriting_ai", "Darwin Godel Machine evolution", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00086
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00087
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00088
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00089
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00090
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00091
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00092
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00093
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
expert
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00094
self_rewriting_ai
Self-modifying prompt
Self-modifying prompt - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Self-modifying prompt improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Self-modifying prompt with before/after metric, passes unit tests, stores as reusable skill.
# Self-modifying prompt import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Self-modifying prompt return ast.unparse(tree)
[ "self_rewriting_ai", "Self-modifying prompt", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00095
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00096
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Build Darwin Godel Machine agent that proposes code edits to
expert
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00097
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00098
self_rewriting_ai
Godel Agent runtime edit
Godel Agent runtime edit - Implement a Python class that can read its own source via in
advanced
Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety
Objective: Implement a Python class that can read its own source via inspect, detect if solve() has no caching, and rewrite itself using ast to add @lru_cache with rollback safety 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for re...
Verify Godel Agent runtime edit improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Godel Agent runtime edit with before/after metric, passes unit tests, stores as reusable skill.
# Godel Agent runtime edit import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Godel Agent runtime edit return ast.unparse(tree)
[ "self_rewriting_ai", "Godel Agent runtime edit", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00099
self_rewriting_ai
Code that writes sub-models
Code that writes sub-models - Create Gödel Agent style self-modifier: treat own code as da
expert
Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying
Objective: Create Gödel Agent style self-modifier: treat own code as data, use LLM to propose patch, verify via unit tests before applying 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computation / missing optimization...
Verify Code that writes sub-models improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements Code that writes sub-models with before/after metric, passes unit tests, stores as reusable skill.
# Code that writes sub-models import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for Code that writes sub-models return ast.unparse(tree)
[ "self_rewriting_ai", "Code that writes sub-models", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
seed-00100
self_rewriting_ai
AST self-patch
AST self-patch - Build Darwin Godel Machine agent that proposes code edits to
advanced
Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks
Objective: Build Darwin Godel Machine agent that proposes code edits to its own solver, tests them in sandbox, keeps edit if performance improves on held-out tasks 1. Code-as-data: use inspect.getsource() to retrieve own implementation 2. Parse with ast to locate target function 3. Analyze: check for repeated computati...
Verify AST self-patch improves over baseline, measurable metric, sandboxed execution, rollback exists. Check for catastrophic forgetting and reward hacking.
Implements AST self-patch with before/after metric, passes unit tests, stores as reusable skill.
# AST self-patch import ast, inspect class SelfRewriter: def solve(self, x): return sum(i*i for i in range(x)) def self_patch(self): src=inspect.getsource(self.__class__) tree=ast.parse(src) # inject lru_cache for AST self-patch return ast.unparse(tree)
[ "self_rewriting_ai", "AST self-patch", "self-improving", "cot", "high-quality" ]
0.92
[ "executes", "measurable_improvement", "CoT_depth>=5", "self_rewrite_signal", "safe_sandbox" ]
End of preview. Expand in Data Studio

What's inside the 5K Each entry now has the full professional schema: • prompt: expert-level implementation task • chain_of_thought: 6-step structured reasoning with objective, code-as-data, verification, self-critique hook • self_critique: measurable improvement check + safety • code: executable snippet with sandbox and rollback • quality_score: 0.92 target, plus checks: executes, measurable_improvement, CoT_depth>=5, self_rewrite_signal, safe_sandbox Distribution: • self_rewriting_ai: 1000 - AST patching, Gödel Agent runtime edits, Darwin Gödel Machine evolution • meta_learning: 1000 - FOMAML, Reptile, MAML-en-LLM, La-MAML, ProtoNet • adaptive_learning: 1000 - EWC continual, progressive nets, adaptive LR controller • creative_innovation_ai: 1000 - architecture blending, novel loss invention, AlphaEvolve search • advanced_self_improving_cot: 1000 - Reflexion loops, Voyager skill library, STOP optimizer All 5K are plant-ready. For pretraining, inject at 3-5% mixed, shuffled, with <|seed_think|> token before CoT, curriculum sorted by quality_score DESC.

this dataset was created by "In The Loop Labs" using Meta AI

Downloads last month
36

Models trained or fine-tuned on ITLL/SEED_5K_full

Collection including ITLL/SEED_5K_full