├── .gitignore ├── LICENSE ├── README.md ├── assets └── AlphaWriteProcess.png ├── config.json ├── evolve.py ├── output └── examples │ ├── book_store │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── book_store_2.0 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── book_store_gpt-4o │ ├── batch2_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ ├── live_percentages.json │ └── match_history.json │ ├── elevator_llama-scout │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── batch6_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ ├── match_history.json │ └── preference_data.json │ ├── llama3.2B │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── metafictional-ai-llama_scout │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ ├── live_percentages.json │ └── preference_data.json │ ├── numer_arm_llama-scout │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── space_gpt-4o │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── space_llama-Scout │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── story1 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── batch6_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── story2 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── batch6_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── story3 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ └── train │ └── gpt-4o-mini │ ├── example1 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── batch6_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ ├── example2 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── batch6_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json │ └── example3 │ ├── batch2_stories.json │ ├── batch3_stories.json │ ├── batch4_stories.json │ ├── batch5_stories.json │ ├── batch6_stories.json │ ├── elo_rankings.json │ ├── initial_stories.json │ └── match_history.json ├── prompt.txt ├── pyproject.toml ├── rubric.txt ├── src ├── __init__.py ├── core │ ├── __init__.py │ └── pipeline.py ├── generators │ ├── __init__.py │ ├── generate_response.py │ ├── generate_response_general.py │ ├── judge_response.py │ └── story_generator.py ├── rankers │ ├── __init__.py │ ├── glicko_rank.py │ └── tournament_runner.py └── utils │ ├── __init__.py │ └── inference.py ├── uv.lock └── web_interface ├── README.md ├── app.py ├── requirements.txt └── templates ├── base.html ├── compare.html ├── index.html ├── judge_test.html └── stats.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/README.md -------------------------------------------------------------------------------- /assets/AlphaWriteProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/assets/AlphaWriteProcess.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/config.json -------------------------------------------------------------------------------- /evolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/evolve.py -------------------------------------------------------------------------------- /output/examples/book_store/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/book_store/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/book_store/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/book_store/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/book_store/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/book_store/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/initial_stories.json -------------------------------------------------------------------------------- /output/examples/book_store/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store/match_history.json -------------------------------------------------------------------------------- /output/examples/book_store_2.0/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_2.0/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/book_store_2.0/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_2.0/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/book_store_2.0/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_2.0/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/book_store_2.0/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_2.0/initial_stories.json -------------------------------------------------------------------------------- /output/examples/book_store_2.0/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_2.0/match_history.json -------------------------------------------------------------------------------- /output/examples/book_store_gpt-4o/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_gpt-4o/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/book_store_gpt-4o/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_gpt-4o/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/book_store_gpt-4o/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_gpt-4o/initial_stories.json -------------------------------------------------------------------------------- /output/examples/book_store_gpt-4o/live_percentages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_gpt-4o/live_percentages.json -------------------------------------------------------------------------------- /output/examples/book_store_gpt-4o/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/book_store_gpt-4o/match_history.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/batch6_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/batch6_stories.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/initial_stories.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/match_history.json -------------------------------------------------------------------------------- /output/examples/elevator_llama-scout/preference_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/elevator_llama-scout/preference_data.json -------------------------------------------------------------------------------- /output/examples/llama3.2B/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/llama3.2B/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/llama3.2B/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/llama3.2B/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/llama3.2B/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/llama3.2B/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/llama3.2B/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/llama3.2B/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/llama3.2B/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/llama3.2B/initial_stories.json -------------------------------------------------------------------------------- /output/examples/llama3.2B/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/llama3.2B/match_history.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/initial_stories.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/live_percentages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/live_percentages.json -------------------------------------------------------------------------------- /output/examples/metafictional-ai-llama_scout/preference_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/metafictional-ai-llama_scout/preference_data.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/initial_stories.json -------------------------------------------------------------------------------- /output/examples/numer_arm_llama-scout/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/numer_arm_llama-scout/match_history.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/initial_stories.json -------------------------------------------------------------------------------- /output/examples/space_gpt-4o/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_gpt-4o/match_history.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/initial_stories.json -------------------------------------------------------------------------------- /output/examples/space_llama-Scout/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/space_llama-Scout/match_history.json -------------------------------------------------------------------------------- /output/examples/story1/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/story1/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/story1/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/story1/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/story1/batch6_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/batch6_stories.json -------------------------------------------------------------------------------- /output/examples/story1/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/story1/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/initial_stories.json -------------------------------------------------------------------------------- /output/examples/story1/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story1/match_history.json -------------------------------------------------------------------------------- /output/examples/story2/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/story2/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/story2/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/story2/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/story2/batch6_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/batch6_stories.json -------------------------------------------------------------------------------- /output/examples/story2/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/story2/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/initial_stories.json -------------------------------------------------------------------------------- /output/examples/story2/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story2/match_history.json -------------------------------------------------------------------------------- /output/examples/story3/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/story3/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/story3/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/story3/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/story3/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/story3/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/initial_stories.json -------------------------------------------------------------------------------- /output/examples/story3/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/story3/match_history.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/batch6_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/batch6_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/initial_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example1/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example1/match_history.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/batch6_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/batch6_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/initial_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example2/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example2/match_history.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/batch2_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/batch2_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/batch3_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/batch3_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/batch4_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/batch4_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/batch5_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/batch5_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/batch6_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/batch6_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/elo_rankings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/elo_rankings.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/initial_stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/initial_stories.json -------------------------------------------------------------------------------- /output/examples/train/gpt-4o-mini/example3/match_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/output/examples/train/gpt-4o-mini/example3/match_history.json -------------------------------------------------------------------------------- /prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/prompt.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rubric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/rubric.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/core/__init__.py -------------------------------------------------------------------------------- /src/core/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/core/pipeline.py -------------------------------------------------------------------------------- /src/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/generators/__init__.py -------------------------------------------------------------------------------- /src/generators/generate_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/generators/generate_response.py -------------------------------------------------------------------------------- /src/generators/generate_response_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/generators/generate_response_general.py -------------------------------------------------------------------------------- /src/generators/judge_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/generators/judge_response.py -------------------------------------------------------------------------------- /src/generators/story_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/generators/story_generator.py -------------------------------------------------------------------------------- /src/rankers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/rankers/__init__.py -------------------------------------------------------------------------------- /src/rankers/glicko_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/rankers/glicko_rank.py -------------------------------------------------------------------------------- /src/rankers/tournament_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/rankers/tournament_runner.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/src/utils/inference.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/uv.lock -------------------------------------------------------------------------------- /web_interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/README.md -------------------------------------------------------------------------------- /web_interface/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/app.py -------------------------------------------------------------------------------- /web_interface/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.3 -------------------------------------------------------------------------------- /web_interface/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/templates/base.html -------------------------------------------------------------------------------- /web_interface/templates/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/templates/compare.html -------------------------------------------------------------------------------- /web_interface/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/templates/index.html -------------------------------------------------------------------------------- /web_interface/templates/judge_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/templates/judge_test.html -------------------------------------------------------------------------------- /web_interface/templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobysimonds/AlphaEvolveWriting/HEAD/web_interface/templates/stats.html --------------------------------------------------------------------------------