├── .gitignore ├── LICENSE ├── README.md ├── UBI ├── persona_1687356517.8189914.yaml └── persona_1687356661.242694.yaml ├── persona_traits.json ├── step01_synthesize_personas.py ├── system_compare_contrast.txt ├── system_consensus.txt ├── system_persona.txt └── system_synthesize_policy.txt /.gitignore: -------------------------------------------------------------------------------- 1 | key_openai.txt 2 | .idea 3 | .venv 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/README.md -------------------------------------------------------------------------------- /UBI/persona_1687356517.8189914.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/UBI/persona_1687356517.8189914.yaml -------------------------------------------------------------------------------- /UBI/persona_1687356661.242694.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/UBI/persona_1687356661.242694.yaml -------------------------------------------------------------------------------- /persona_traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/persona_traits.json -------------------------------------------------------------------------------- /step01_synthesize_personas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/step01_synthesize_personas.py -------------------------------------------------------------------------------- /system_compare_contrast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/system_compare_contrast.txt -------------------------------------------------------------------------------- /system_consensus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/system_consensus.txt -------------------------------------------------------------------------------- /system_persona.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/system_persona.txt -------------------------------------------------------------------------------- /system_synthesize_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Automated_Consensus/HEAD/system_synthesize_policy.txt --------------------------------------------------------------------------------