gitextract_rb6ph2t1/ ├── .gitattributes ├── .github/ │ ├── copilot-instructions.md │ ├── project-copilot-instructions.md │ ├── prompts/ │ │ ├── improve.prompt.md │ │ ├── open-ended_ideas.prompt.md │ │ └── write_tests.prompt.md │ └── workflows/ │ ├── bandit.yml │ └── codeql.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RESPONSIBLE_AI_FAQ.md ├── SECURITY.md ├── SUPPORT.md ├── build_and_install_package_from_repo.bat ├── build_package.bat ├── config.ini ├── data/ │ ├── empirical/ │ │ ├── 07.17.2025 - Market Research - AI-enabled story telling device or app - Raw Data.csv │ │ └── 07.19.2025 - Market Research - Bottled Gazpacho - Raw Data.csv │ ├── extractions/ │ │ ├── appartment_rent_ad.extraction.json │ │ ├── appartment_rent_ad_1.extraction.json │ │ ├── synthetic_data_generation.out.csv │ │ └── wordprocessor/ │ │ └── Document/ │ │ ├── Lisa Carter - Resume.Lisa Carter.docx │ │ ├── Lisa Carter - Resume.Lisa Carter.json │ │ ├── Lisa Carter - Resume.Lisa Carter.md │ │ ├── Resume of Lisa Carter.Lisa Carter.docx │ │ ├── Resume of Lisa Carter.Lisa Carter.json │ │ ├── Resume of Lisa Carter.Lisa Carter.md │ │ ├── Resume of Lisa.Lisa.docx │ │ ├── Resume of Lisa.Lisa.json │ │ ├── Resume of Lisa.Lisa.md │ │ └── Resume.Lisa.docx │ ├── facts/ │ │ └── business-facts.synthetic.txt │ └── grounding_examples/ │ ├── grounding_examples_1/ │ │ ├── don_quijote_project_gutenberg.txt │ │ └── marus_aurelius_meditations_by_project_gutenberg.txt │ └── grounding_microsoft/ │ ├── 2023_Microsoft_Annual_Report.docx │ └── 2024_Annual_Report.docx ├── docs/ │ ├── api/ │ │ └── tinytroupe/ │ │ ├── agent/ │ │ │ ├── action_generator.html │ │ │ ├── grounding.html │ │ │ ├── index.html │ │ │ ├── memory.html │ │ │ ├── mental_faculty.html │ │ │ └── tiny_person.html │ │ ├── clients/ │ │ │ ├── azure_client.html │ │ │ ├── index.html │ │ │ ├── ollama_client.html │ │ │ └── openai_client.html │ │ ├── control.html │ │ ├── enrichment/ │ │ │ ├── index.html │ │ │ ├── tiny_enricher.html │ │ │ └── tiny_styler.html │ │ ├── environment/ │ │ │ ├── index.html │ │ │ ├── tiny_social_network.html │ │ │ └── tiny_world.html │ │ ├── examples/ │ │ │ ├── agents.html │ │ │ ├── index.html │ │ │ └── loaders.html │ │ ├── experimentation/ │ │ │ ├── in_place_experiment_runner.html │ │ │ ├── index.html │ │ │ ├── proposition.html │ │ │ ├── randomization.html │ │ │ └── statistical_tests.html │ │ ├── extraction/ │ │ │ ├── artifact_exporter.html │ │ │ ├── index.html │ │ │ ├── normalizer.html │ │ │ ├── results_extractor.html │ │ │ ├── results_reducer.html │ │ │ └── results_reporter.html │ │ ├── factory/ │ │ │ ├── index.html │ │ │ ├── tiny_factory.html │ │ │ └── tiny_person_factory.html │ │ ├── index.html │ │ ├── profiling.html │ │ ├── steering/ │ │ │ ├── index.html │ │ │ ├── intervention.html │ │ │ └── tiny_story.html │ │ ├── tools/ │ │ │ ├── index.html │ │ │ ├── tiny_calendar.html │ │ │ ├── tiny_tool.html │ │ │ └── tiny_word_processor.html │ │ ├── ui/ │ │ │ ├── index.html │ │ │ └── jupyter_widgets.html │ │ ├── utils/ │ │ │ ├── behavior.html │ │ │ ├── concurrency.html │ │ │ ├── config.html │ │ │ ├── index.html │ │ │ ├── json.html │ │ │ ├── llm.html │ │ │ ├── misc.html │ │ │ ├── parallel.html │ │ │ ├── rendering.html │ │ │ ├── semantics.html │ │ │ └── validation.html │ │ └── validation/ │ │ ├── index.html │ │ ├── propositions.html │ │ ├── simulation_validator.html │ │ ├── tiny_person_validator.html │ │ └── validation_chamber.html │ ├── guides/ │ │ └── ollama.md │ └── index.html ├── examples/ │ ├── AI-enabled Children Story Telling Market Research 2.ipynb │ ├── AI-enabled Children Story Telling Market Research.ipynb │ ├── Advertisement for TV.ipynb │ ├── Bottled Gazpacho Market Research 2.archival.ipynb │ ├── Bottled Gazpacho Market Research 3.archival.ipynb │ ├── Bottled Gazpacho Market Research 4.archival.ipynb │ ├── Bottled Gazpacho Market Research 4b.archival.ipynb │ ├── Bottled Gazpacho Market Research 5 (with behavior correction).ipynb │ ├── Bottled Gazpacho Market Research 5.ipynb │ ├── Bottled Gazpacho Market Research 5b.ipynb │ ├── Bottled Gazpacho Market Research 5c.ipynb │ ├── Bottled Gazpacho Market Research.archival.ipynb │ ├── Create Ad for Apartment.ipynb │ ├── Creating and Validating Agents.ipynb │ ├── Interview with Customer.ipynb │ ├── Investment Firm.ipynb │ ├── Online Advertisement for Travel.ipynb │ ├── Political Compass (customizing agents with fragments).ipynb │ ├── Product Brainstorming (with behavior correction).ipynb │ ├── Product Brainstorming.ipynb │ ├── Simple Chat.ipynb │ ├── Story telling (long narratives).ipynb │ ├── Synthetic Data Generation 1.ipynb │ ├── Synthetic Data Generation 2 (tool usage).ipynb │ ├── Synthetic Data Generation.ipynb │ ├── Travel Product Market Research.ipynb │ ├── Word Processor Tool Usage.ipynb │ ├── agents/ │ │ ├── Friedrich_Wolf.agent.json │ │ ├── Lila.agent.json │ │ ├── Lisa.agent.json │ │ ├── Marcos.agent.json │ │ ├── Oscar.agent.json │ │ ├── Paulo_Salem.agent.json │ │ └── Sophie_Lefevre.agent.json │ ├── archive/ │ │ ├── AI-enabled Children Story Telling Market Research.ipynb │ │ ├── Bottled Gazpacho Market Research 2.archival.ipynb │ │ ├── Bottled Gazpacho Market Research 3.archival.ipynb │ │ ├── Bottled Gazpacho Market Research 4.archival.ipynb │ │ ├── Bottled Gazpacho Market Research 4b.archival.ipynb │ │ ├── Bottled Gazpacho Market Research 5b.ipynb │ │ ├── Bottled Gazpacho Market Research 5c.ipynb │ │ └── Bottled Gazpacho Market Research.archival.ipynb │ ├── config.ini │ ├── extractions/ │ │ └── synthetic_data_example_3/ │ │ └── Document/ │ │ ├── MultiLever Rapid Response Report- Stabilizing Demand under High Inflation.Lisa Carter.docx │ │ ├── MultiLever Rapid Response Report- Stabilizing Demand under High Inflation.Lisa Carter.json │ │ ├── MultiLever Rapid Response Report- Stabilizing Demand under High Inflation.Lisa Carter.md │ │ ├── MultiLever — Initial Rapid Diagnostic & Recommendations (Client Brief).Lisa Carter.docx │ │ ├── MultiLever — Initial Rapid Diagnostic & Recommendations (Client Brief).Lisa Carter.json │ │ ├── MultiLever — Initial Rapid Diagnostic & Recommendations (Client Brief).Lisa Carter.md │ │ ├── MultiLever — Rapid Diagnostic & Recommendations.Lisa Carter.docx │ │ ├── MultiLever — Rapid Diagnostic & Recommendations.Lisa Carter.json │ │ ├── MultiLever — Rapid Diagnostic & Recommendations.Lisa Carter.md │ │ ├── Port Aurora u0007 Rapid Flood Resilience Plan u0007 Initial Report and Recommended Next Steps.Lisa Carter.docx │ │ ├── Port Aurora u0007 Rapid Flood Resilience Plan u0007 Initial Report and Recommended Next Steps.Lisa Carter.json │ │ ├── Port Aurora u0007 Rapid Flood Resilience Plan u0007 Initial Report and Recommended Next Steps.Lisa Carter.md │ │ ├── Rapid Delivery Plan- Phase 1 FEMA-compliant Procurement and Upgrade Path.Lisa Carter.docx │ │ ├── Rapid Delivery Plan- Phase 1 FEMA-compliant Procurement and Upgrade Path.Lisa Carter.json │ │ └── Rapid Delivery Plan- Phase 1 FEMA-compliant Procurement and Upgrade Path.Lisa Carter.md │ ├── fragments/ │ │ ├── aggressive_debater.fragment.json │ │ ├── authoritarian.agent.fragment.json │ │ ├── genuine.agent.fragment.json │ │ ├── leftwing.agent.fragment.json │ │ ├── libertarian.agent.fragment.json │ │ ├── loving_parent.agent.fragment.json │ │ ├── picky_customer.agent.fragment.json │ │ ├── rightwing.agent.fragment.json │ │ └── travel_enthusiast.agent.fragment.json │ ├── information/ │ │ └── populations/ │ │ ├── brazil.json │ │ ├── spain.json │ │ └── usa.json │ ├── ollama/ │ │ ├── Simple Chat.ipynb │ │ └── config.ini │ └── scratch/ │ ├── Advertisement for TV.ipynb │ ├── Simulation Experiment Empirical Validation Example.ipynb │ ├── config.ini │ └── tool_usage.ipynb ├── generate_api_documentation.bat ├── install_package_from_repo.bat ├── publications/ │ ├── README.md │ ├── paper_artifacts_june-2025/ │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 1 - treatment run.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 1.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.1 - treatment run.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.1.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.2 - treatment run.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.2.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.3 - treatment run.ipynb │ │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.3.ipynb │ │ ├── Debating Quantitative Experimentation 1 - treatment run.ipynb │ │ ├── Debating Quantitative Experimentation 1.ipynb │ │ ├── Food Products Ideas Brainstorming.ipynb │ │ ├── Market Research Quantitative Experimentation 1.ipynb │ │ ├── Market Research Quantitative Experimentation 2.ipynb │ │ ├── Opinion Poll Quantitative Experimentation.ipynb │ │ ├── Political Compass (customizing agents with fragments).ipynb │ │ ├── Populations creation.ipynb │ │ ├── Spicy Food Market Research.ipynb │ │ ├── Synthetic Data Generation.ipynb │ │ ├── Travel Product Market Research (with behavior correction).ipynb │ │ ├── Travel Product Market Research.ipynb │ │ ├── brainstorming_and_focus_group_quantitative_experimentation_1c.json │ │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.1c.json │ │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.2b.json │ │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.3.json │ │ ├── common_utils.py │ │ ├── config.ini │ │ ├── debating_quantitative_experimentation_1c.json │ │ ├── extractions/ │ │ │ ├── synthetic_data_example_1/ │ │ │ │ └── Document/ │ │ │ │ ├── Report for AquaPure Solutions- Strategies for Modernizing Water Purification Systems.Lisa Carter.docx │ │ │ │ ├── Report for AquaPure Solutions- Strategies for Modernizing Water Purification Systems.Lisa Carter.json │ │ │ │ ├── Report for AquaPure Solutions- Strategies for Modernizing Water Purification Systems.Lisa Carter.md │ │ │ │ ├── Report for BioSphere Innovations- Feasibility Study for Waste-to-Energy Solution.Lisa Carter.docx │ │ │ │ ├── Report for BioSphere Innovations- Feasibility Study for Waste-to-Energy Solution.Lisa Carter.json │ │ │ │ ├── Report for BioSphere Innovations- Feasibility Study for Waste-to-Energy Solution.Lisa Carter.md │ │ │ │ ├── Report for BrightPath Industries- Strategies for Enhancing Supply Chain Resilience.Lisa Carter.docx │ │ │ │ ├── Report for BrightPath Industries- Strategies for Enhancing Supply Chain Resilience.Lisa Carter.json │ │ │ │ ├── Report for BrightPath Industries- Strategies for Enhancing Supply Chain Resilience.Lisa Carter.md │ │ │ │ ├── Report for CleanFuture Corp- Strategies for Reshaping Public Image and Sustainability Practices.Lisa Carter.docx │ │ │ │ ├── Report for CleanFuture Corp- Strategies for Reshaping Public Image and Sustainability Practices.Lisa Carter.json │ │ │ │ ├── Report for CleanFuture Corp- Strategies for Reshaping Public Image and Sustainability Practices.Lisa Carter.md │ │ │ │ ├── Report for EcoFuture Enterprises- Strategies for Sourcing Sustainable Materials.Lisa Carter.docx │ │ │ │ ├── Report for EcoFuture Enterprises- Strategies for Sourcing Sustainable Materials.Lisa Carter.json │ │ │ │ ├── Report for EcoFuture Enterprises- Strategies for Sourcing Sustainable Materials.Lisa Carter.md │ │ │ │ ├── Report for EcoTech Solutions- Strategies for Enhancing Product Appeal and Market Presence.Lisa Carter.docx │ │ │ │ ├── Report for EcoTech Solutions- Strategies for Enhancing Product Appeal and Market Presence.Lisa Carter.json │ │ │ │ ├── Report for EcoTech Solutions- Strategies for Enhancing Product Appeal and Market Presence.Lisa Carter.md │ │ │ │ ├── Report for GreenWave Innovations- Strategies for Reducing Waste and Enhancing Sustainability.Lisa Carter.docx │ │ │ │ ├── Report for GreenWave Innovations- Strategies for Reducing Waste and Enhancing Sustainability.Lisa Carter.json │ │ │ │ ├── Report for GreenWave Innovations- Strategies for Reducing Waste and Enhancing Sustainability.Lisa Carter.md │ │ │ │ ├── Report for MultiLever- Strategies for Addressing Inflation and Enhancing Consumer Demand.Lisa Carter.docx │ │ │ │ ├── Report for MultiLever- Strategies for Addressing Inflation and Enhancing Consumer Demand.Lisa Carter.json │ │ │ │ ├── Report for MultiLever- Strategies for Addressing Inflation and Enhancing Consumer Demand.Lisa Carter.md │ │ │ │ ├── Report for SolarWave Technologies- Strategies for Securing Funding for Solar Panel Project.Lisa Carter.docx │ │ │ │ ├── Report for SolarWave Technologies- Strategies for Securing Funding for Solar Panel Project.Lisa Carter.json │ │ │ │ ├── Report for SolarWave Technologies- Strategies for Securing Funding for Solar Panel Project.Lisa Carter.md │ │ │ │ ├── Report for TerraBuild- Strategies for Reducing Carbon Footprint and Improving Public Image.Lisa Carter.docx │ │ │ │ ├── Report for TerraBuild- Strategies for Reducing Carbon Footprint and Improving Public Image.Lisa Carter.json │ │ │ │ ├── Report for TerraBuild- Strategies for Reducing Carbon Footprint and Improving Public Image.Lisa Carter.md │ │ │ │ ├── Report for UrbanGreen- Strategies for Sustainable Urban Development Projects.Lisa Carter.docx │ │ │ │ ├── Report for UrbanGreen- Strategies for Sustainable Urban Development Projects.Lisa Carter.json │ │ │ │ └── Report for UrbanGreen- Strategies for Sustainable Urban Development Projects.Lisa Carter.md │ │ │ └── synthetic_data_example_2/ │ │ │ └── Document/ │ │ │ ├── Report for AquaPure- Sustainable Funding Model and Operational Efficiency Improvement.Lisa Carter.docx │ │ │ ├── Report for AquaPure- Sustainable Funding Model and Operational Efficiency Improvement.Lisa Carter.json │ │ │ ├── Report for AquaPure- Sustainable Funding Model and Operational Efficiency Improvement.Lisa Carter.md │ │ │ ├── Report for EcoTech Innovations- Strategies for Improving Visibility and Consumer Engagement.Lisa Carter.docx │ │ │ ├── Report for EcoTech Innovations- Strategies for Improving Visibility and Consumer Engagement.Lisa Carter.json │ │ │ ├── Report for EcoTech Innovations- Strategies for Improving Visibility and Consumer Engagement.Lisa Carter.md │ │ │ ├── Report for FinTech Nexus- Strategies for Competitive Advantage and Compliance Navigation.Lisa Carter.docx │ │ │ ├── Report for FinTech Nexus- Strategies for Competitive Advantage and Compliance Navigation.Lisa Carter.json │ │ │ ├── Report for FinTech Nexus- Strategies for Competitive Advantage and Compliance Navigation.Lisa Carter.md │ │ │ ├── Report for GreenWave Logistics- Sustainable Logistics Model Development.Lisa Carter.docx │ │ │ ├── Report for GreenWave Logistics- Sustainable Logistics Model Development.Lisa Carter.json │ │ │ ├── Report for GreenWave Logistics- Sustainable Logistics Model Development.Lisa Carter.md │ │ │ ├── Report for MedTech Solutions- Strategies for Regulatory Compliance and Market Penetration.Lisa Carter.docx │ │ │ ├── Report for MedTech Solutions- Strategies for Regulatory Compliance and Market Penetration.Lisa Carter.json │ │ │ ├── Report for MedTech Solutions- Strategies for Regulatory Compliance and Market Penetration.Lisa Carter.md │ │ │ ├── Report for MultiLever- Strategies to Address Inflation and Decreased Consumer Demand.Lisa Carter.docx │ │ │ ├── Report for MultiLever- Strategies to Address Inflation and Decreased Consumer Demand.Lisa Carter.json │ │ │ ├── Report for MultiLever- Strategies to Address Inflation and Decreased Consumer Demand.Lisa Carter.md │ │ │ ├── Report for SafeHaven- Strategies for Streamlining Claims Processing and Improving Communication.Lisa Carter.docx │ │ │ ├── Report for SafeHaven- Strategies for Streamlining Claims Processing and Improving Communication.Lisa Carter.json │ │ │ ├── Report for SafeHaven- Strategies for Streamlining Claims Processing and Improving Communication.Lisa Carter.md │ │ │ ├── Report for StellarTech- Streamlining Operations and Navigating Regulatory Compliance.Lisa Carter.docx │ │ │ ├── Report for StellarTech- Streamlining Operations and Navigating Regulatory Compliance.Lisa Carter.json │ │ │ ├── Report for StellarTech- Streamlining Operations and Navigating Regulatory Compliance.Lisa Carter.md │ │ │ ├── Report for TechSphere- Crisis Management and Cybersecurity Enhancement Strategies.Lisa Carter.docx │ │ │ ├── Report for TechSphere- Crisis Management and Cybersecurity Enhancement Strategies.Lisa Carter.json │ │ │ ├── Report for TechSphere- Crisis Management and Cybersecurity Enhancement Strategies.Lisa Carter.md │ │ │ ├── Report for UrbanGrow- Strategies for Addressing Climate Change and Supply Chain Disruptions.Lisa Carter.docx │ │ │ ├── Report for UrbanGrow- Strategies for Addressing Climate Change and Supply Chain Disruptions.Lisa Carter.json │ │ │ ├── Report for UrbanGrow- Strategies for Addressing Climate Change and Supply Chain Disruptions.Lisa Carter.md │ │ │ ├── Report for UrbanHealth- Comprehensive Outreach Strategy and Funding Proposal.Lisa Carter.docx │ │ │ ├── Report for UrbanHealth- Comprehensive Outreach Strategy and Funding Proposal.Lisa Carter.json │ │ │ └── Report for UrbanHealth- Comprehensive Outreach Strategy and Funding Proposal.Lisa Carter.md │ │ ├── food_products_brainstorming_2.json │ │ ├── fragments/ │ │ │ ├── aggressive_debater.fragment.json │ │ │ ├── authoritarian.agent.fragment.json │ │ │ ├── difficult_person.agent.fragment.json │ │ │ ├── leftwing.agent.fragment.json │ │ │ ├── libertarian.agent.fragment.json │ │ │ ├── loving_parent.agent.fragment.json │ │ │ ├── picky_customer.agent.fragment copy.json │ │ │ ├── picky_customer.agent.fragment.json │ │ │ └── rightwing.agent.fragment.json │ │ ├── information/ │ │ │ └── populations/ │ │ │ ├── brazil.json │ │ │ ├── china.json │ │ │ ├── india.json │ │ │ ├── mexico.json │ │ │ ├── norway.json │ │ │ ├── scandinavia.json │ │ │ └── usa.json │ │ ├── market_research_quantitative_experimentation_1.json │ │ ├── market_research_quantitative_experimentation_2.json │ │ ├── market_research_utils.py │ │ ├── opinion_poll_quantitative_experimentation_1.json │ │ ├── population/ │ │ │ ├── difficult_people/ │ │ │ │ ├── Benjamin Carter.agent.json │ │ │ │ ├── Benjamin Hall.agent.json │ │ │ │ ├── Chloe Turner.agent.json │ │ │ │ ├── Clara Johnson.agent.json │ │ │ │ ├── Clara White.agent.json │ │ │ │ ├── Ella Johnson.agent.json │ │ │ │ ├── Gabriel White.agent.json │ │ │ │ ├── Gavin Lewis.agent.json │ │ │ │ ├── Henry White.agent.json │ │ │ │ ├── Isaac Anderson.agent.json │ │ │ │ ├── Isaac Brooks.agent.json │ │ │ │ ├── Isaac Turner.agent.json │ │ │ │ ├── Jasmine Brooks.agent.json │ │ │ │ ├── Katherine Hall.agent.json │ │ │ │ ├── Liam Foster.agent.json │ │ │ │ ├── Nora Adams.agent.json │ │ │ │ ├── Nora Mitchell.agent.json │ │ │ │ ├── Sophie Johnson.agent.json │ │ │ │ ├── Victoria Hall.agent.json │ │ │ │ └── Zoe Mitchell.agent.json │ │ │ ├── global_general/ │ │ │ │ ├── Amelia Scott.agent.json │ │ │ │ ├── Ava Patel.agent.json │ │ │ │ ├── Benjamin Taylor.agent.json │ │ │ │ ├── Charlotte Nguyen.agent.json │ │ │ │ ├── Daniel Clark.agent.json │ │ │ │ ├── Daniel Evans.agent.json │ │ │ │ ├── Ella Lewis.agent.json │ │ │ │ ├── Emily Foster.agent.json │ │ │ │ ├── Emma Thompson.agent.json │ │ │ │ ├── Ethan Singh.agent.json │ │ │ │ ├── Grace Harris.agent.json │ │ │ │ ├── Isabella Martinez.agent.json │ │ │ │ ├── James Rodriguez.agent.json │ │ │ │ ├── Liam Chen.agent.json │ │ │ │ ├── Lily Carter.agent.json │ │ │ │ ├── Lucas Wilson.agent.json │ │ │ │ ├── Mason Brown.agent.json │ │ │ │ ├── Matthew Young.agent.json │ │ │ │ ├── Noah Kim.agent.json │ │ │ │ └── Samuel Turner.agent.json │ │ │ ├── mexico_general/ │ │ │ │ ├── Ana Maria Herrera.agent.json │ │ │ │ ├── Ana Maria Salazar.agent.json │ │ │ │ ├── Camila Rojas.agent.json │ │ │ │ ├── Camila Salazar.agent.json │ │ │ │ ├── Camila Torres.agent.json │ │ │ │ ├── Carlos Herrera.agent.json │ │ │ │ ├── Carlos Mendoza.agent.json │ │ │ │ ├── Diego Mendoza.agent.json │ │ │ │ ├── Diego Morales.agent.json │ │ │ │ ├── Diego Salazar.agent.json │ │ │ │ ├── Fernando Ramirez.agent.json │ │ │ │ ├── Isabel Gonzalez.agent.json │ │ │ │ ├── Isabel Rojas.agent.json │ │ │ │ ├── Isabella Rojas.agent.json │ │ │ │ ├── Lucia Morales.agent.json │ │ │ │ ├── Santiago Jimenez.agent.json │ │ │ │ ├── Santiago Rojas.agent.json │ │ │ │ ├── Valeria Jimenez.agent.json │ │ │ │ ├── Valeria Morales.agent.json │ │ │ │ └── Valeria Torres.agent.json │ │ │ ├── misc/ │ │ │ │ ├── Daniel Harris (Market Researcher).agent.json │ │ │ │ └── Oscar.agent.json │ │ │ ├── norway_general/ │ │ │ │ ├── Astrid Johansen.agent.json │ │ │ │ ├── Astrid Nilsen.agent.json │ │ │ │ ├── Astrid Sørensen.agent.json │ │ │ │ ├── Emil Bergstrom.agent.json │ │ │ │ ├── Emil Knudsen.agent.json │ │ │ │ ├── Freja Eriksen.agent.json │ │ │ │ ├── Freja Johansen.agent.json │ │ │ │ ├── Henrik Berg.agent.json │ │ │ │ ├── Henrik Eriksen.agent.json │ │ │ │ ├── Ingrid Knudsen.agent.json │ │ │ │ ├── Ingrid Lund.agent.json │ │ │ │ ├── Ingrid Madsen.agent.json │ │ │ │ ├── Ingrid Sørensen.agent.json │ │ │ │ ├── Kari Madsen.agent.json │ │ │ │ ├── Lars Nilsen.agent.json │ │ │ │ ├── Magnus Knudsen.agent.json │ │ │ │ ├── Magnus Sørensen.agent.json │ │ │ │ ├── Oskar Berg.agent.json │ │ │ │ ├── Sofie Lundgren.agent.json │ │ │ │ └── Sofie Sørensen.agent.json │ │ │ ├── political_compass/ │ │ │ │ ├── Aiden Lewis.agent.json │ │ │ │ ├── Benjamin Carter.agent.json │ │ │ │ ├── Chloe Mitchell.agent.json │ │ │ │ ├── Chloe White.agent.json │ │ │ │ ├── Ethan Brooks.agent.json │ │ │ │ ├── Ethan Rivera.agent.json │ │ │ │ ├── Ethan Young.agent.json │ │ │ │ ├── Evelyn Carter.agent.json │ │ │ │ ├── Grace Adams.agent.json │ │ │ │ ├── Henry Johnson.agent.json │ │ │ │ ├── Isabella Martinez.agent.json │ │ │ │ ├── Jessica Martinez.agent.json │ │ │ │ ├── Natalie Brown.agent.json │ │ │ │ ├── Noah Anderson.agent.json │ │ │ │ ├── Noah Davis.agent.json │ │ │ │ ├── Olivia Foster.agent.json │ │ │ │ ├── Olivia Harris.agent.json │ │ │ │ ├── Samuel Reed.agent.json │ │ │ │ ├── Sophia Lewis.agent.json │ │ │ │ └── Sophia Turner.agent.json │ │ │ ├── usa_couples/ │ │ │ │ ├── Aiden Garcia.agent.json │ │ │ │ ├── Aiden Lee.agent.json │ │ │ │ ├── Aiden Martinez.agent.json │ │ │ │ ├── Aiden Thompson.agent.json │ │ │ │ ├── Chloe Adams.agent.json │ │ │ │ ├── Chloe Garcia.agent.json │ │ │ │ ├── Chloe Kim.agent.json │ │ │ │ ├── David Kim.agent.json │ │ │ │ ├── David Nguyen.agent.json │ │ │ │ ├── David Patel.agent.json │ │ │ │ ├── David Wilson.agent.json │ │ │ │ ├── Ella Adams.agent.json │ │ │ │ ├── Ella Brown.agent.json │ │ │ │ ├── Ella Garcia.agent.json │ │ │ │ ├── Ella Johnson.agent.json │ │ │ │ ├── Ella Rodriguez.agent.json │ │ │ │ ├── Emily Chen.agent.json │ │ │ │ ├── Emily Rodriguez.agent.json │ │ │ │ ├── Grace Adams.agent.json │ │ │ │ ├── Grace Johnson.agent.json │ │ │ │ ├── Grace Nguyen.agent.json │ │ │ │ ├── Grace Patel.agent.json │ │ │ │ ├── Isabella Garcia.agent.json │ │ │ │ ├── Isabella Lee.agent.json │ │ │ │ ├── Isabella White.agent.json │ │ │ │ ├── James Brown.agent.json │ │ │ │ ├── James Nguyen.agent.json │ │ │ │ ├── James Patel.agent.json │ │ │ │ ├── James Thompson.agent.json │ │ │ │ ├── Lucas Kim.agent.json │ │ │ │ ├── Mia Carter.agent.json │ │ │ │ ├── Mia Garcia.agent.json │ │ │ │ ├── Mia Rodriguez.agent.json │ │ │ │ ├── Oliver Garcia.agent.json │ │ │ │ ├── Oliver Kim.agent.json │ │ │ │ ├── Oliver Thompson.agent.json │ │ │ │ ├── Sofia Johnson.agent.json │ │ │ │ ├── Sofia Kim.agent.json │ │ │ │ ├── Sofia Lee.agent.json │ │ │ │ └── Sofia Martinez.agent.json │ │ │ ├── usa_couples_2/ │ │ │ │ ├── Ava Carter-Moore.agent.json │ │ │ │ ├── Chloe Lee-Williams.agent.json │ │ │ │ ├── Chloe Nguyen-Smith.agent.json │ │ │ │ ├── Elena Carter-Jones.agent.json │ │ │ │ ├── Elena Martinez-Garcia.agent.json │ │ │ │ ├── Elena Martinez-Jones.agent.json │ │ │ │ ├── Elena Rodriguez.agent.json │ │ │ │ ├── Elijah Carter-Jones.agent.json │ │ │ │ ├── Gabriel Lee-Roberts.agent.json │ │ │ │ ├── Gabriel Lee-Smith.agent.json │ │ │ │ ├── Gabriel Lee-Williams.agent.json │ │ │ │ ├── Gabriel Martinez-Smith.agent.json │ │ │ │ ├── Isabella Carter-Jones.agent.json │ │ │ │ ├── Isabella Carter.agent.json │ │ │ │ ├── Isabella Kimball-Wong.agent.json │ │ │ │ ├── Isaiah Carter.agent.json │ │ │ │ ├── Isaiah Johnson-Smith.agent.json │ │ │ │ ├── Isaiah Patel-Garcia.agent.json │ │ │ │ ├── Jasper Lee-Roberts.agent.json │ │ │ │ ├── Jasper Nguyen-Williams.agent.json │ │ │ │ ├── Jasper Nguyen.agent.json │ │ │ │ ├── Liam Patel-Smith.agent.json │ │ │ │ ├── Liam Torres-Brown.agent.json │ │ │ │ ├── Liam Torres-Garcia.agent.json │ │ │ │ ├── Liam Torres-Moore.agent.json │ │ │ │ ├── Liam Torres-Smith.agent.json │ │ │ │ ├── Nina Hayes-Roberts.agent.json │ │ │ │ ├── Nina Johnson-Rivera.agent.json │ │ │ │ ├── Nina Robinson-Smith.agent.json │ │ │ │ ├── Nina Torres-Smith.agent.json │ │ │ │ ├── Oliver Hayes-Kim.agent.json │ │ │ │ ├── Oliver Hayes-Smith.agent.json │ │ │ │ ├── Oliver Martinez-Jones.agent.json │ │ │ │ ├── Samuel Lee-Patel.agent.json │ │ │ │ ├── Sofia Adams-Williams.agent.json │ │ │ │ ├── Sofia Johnson-Brown.agent.json │ │ │ │ ├── Sofia Patel-Jones.agent.json │ │ │ │ ├── Sofia Patel-Roberts.agent.json │ │ │ │ ├── Sofia Patel-Williams.agent.json │ │ │ │ ├── Victoria Adams-Garcia.agent.json │ │ │ │ ├── Victoria Adams-Kim.agent.json │ │ │ │ ├── Victoria Nguyen.agent.json │ │ │ │ ├── Zara Johnson-Kim.agent.json │ │ │ │ └── Zara Johnson-Smith.agent.json │ │ │ ├── usa_families/ │ │ │ │ ├── Aiden Brown.agent.json │ │ │ │ ├── Aiden Johnson.agent.json │ │ │ │ ├── Aiden Smith.agent.json │ │ │ │ ├── Benjamin Clark.agent.json │ │ │ │ ├── Benjamin Lee.agent.json │ │ │ │ ├── Benjamin Lewis.agent.json │ │ │ │ ├── Benjamin Scott.agent.json │ │ │ │ ├── Chloe Davis.agent.json │ │ │ │ ├── Chloe Harris.agent.json │ │ │ │ ├── Chloe Taylor.agent.json │ │ │ │ ├── Chloe White.agent.json │ │ │ │ ├── Chloe Wilson.agent.json │ │ │ │ ├── Ella Thompson.agent.json │ │ │ │ ├── Ella Wilson.agent.json │ │ │ │ ├── Emily Davis.agent.json │ │ │ │ ├── Emily Smith.agent.json │ │ │ │ ├── Emily Taylor.agent.json │ │ │ │ ├── Emily Wilson.agent.json │ │ │ │ ├── Ethan Smith.agent.json │ │ │ │ ├── Ethan Taylor.agent.json │ │ │ │ ├── Ethan Wilson.agent.json │ │ │ │ ├── Grace Martinez.agent.json │ │ │ │ ├── Grace Taylor.agent.json │ │ │ │ ├── Grace Wilson.agent.json │ │ │ │ ├── Jackson Lee.agent.json │ │ │ │ ├── Jackson White.agent.json │ │ │ │ ├── James Anderson.agent.json │ │ │ │ ├── James Taylor.agent.json │ │ │ │ ├── Lucas Anderson.agent.json │ │ │ │ ├── Lucas Brown.agent.json │ │ │ │ ├── Lucas Davis.agent.json │ │ │ │ ├── Lucas Martinez.agent.json │ │ │ │ ├── Lucas Taylor.agent.json │ │ │ │ ├── Lucas White.agent.json │ │ │ │ ├── Mia Anderson.agent.json │ │ │ │ ├── Mia Johnson.agent.json │ │ │ │ ├── Mia Thompson.agent.json │ │ │ │ ├── Oliver Davis.agent.json │ │ │ │ ├── Oliver Johnson.agent.json │ │ │ │ ├── Oliver Smith.agent.json │ │ │ │ ├── Sofia Anderson.agent.json │ │ │ │ ├── Sofia Brown.agent.json │ │ │ │ ├── Sofia Clark.agent.json │ │ │ │ ├── Sofia Davis.agent.json │ │ │ │ └── Sofia White.agent.json │ │ │ ├── usa_families_2/ │ │ │ │ ├── Avery Martinez.agent.json │ │ │ │ ├── Chloe White.agent.json │ │ │ │ ├── Dante Brooks.agent.json │ │ │ │ ├── Dante Hayes.agent.json │ │ │ │ ├── Dante Kim.agent.json │ │ │ │ ├── Elena Garcia.agent.json │ │ │ │ ├── Elena Martinez-Williams.agent.json │ │ │ │ ├── Elena Martinez.agent.json │ │ │ │ ├── Elijah Carter-Williams.agent.json │ │ │ │ ├── Elijah Johnson.agent.json │ │ │ │ ├── Ethan Brooks.agent.json │ │ │ │ ├── Ethan Carter.agent.json │ │ │ │ ├── Ethan Ramirez.agent.json │ │ │ │ ├── Gabriel Lee-Moore.agent.json │ │ │ │ ├── Gabriel Martinez.agent.json │ │ │ │ ├── Gabriel Torres-Moore.agent.json │ │ │ │ ├── Gabriel Torres.agent.json │ │ │ │ ├── Isabella Martinez-Garcia.agent.json │ │ │ │ ├── Isabella Martinez.agent.json │ │ │ │ ├── Isaiah Ramirez.agent.json │ │ │ │ ├── Jasper Martinez.agent.json │ │ │ │ ├── Julian Hayes-Smith.agent.json │ │ │ │ ├── Liam Carter-Smith.agent.json │ │ │ │ ├── Liam Carter.agent.json │ │ │ │ ├── Liam Harris.agent.json │ │ │ │ ├── Liam Rivera-Sanchez.agent.json │ │ │ │ ├── Liam Rivera.agent.json │ │ │ │ ├── Lucas Thompson.agent.json │ │ │ │ ├── Mason Brown.agent.json │ │ │ │ ├── Mason Carter.agent.json │ │ │ │ ├── Maya Johnson-Smith.agent.json │ │ │ │ ├── Nina Foster.agent.json │ │ │ │ ├── Nina Patel.agent.json │ │ │ │ ├── Nina Robinson.agent.json │ │ │ │ ├── Nina Torres-Garcia.agent.json │ │ │ │ ├── Nina Torres.agent.json │ │ │ │ ├── Rafael Adams.agent.json │ │ │ │ ├── Rafael Torres.agent.json │ │ │ │ ├── Samuel White-Blackwell.agent.json │ │ │ │ ├── Sofia Adams.agent.json │ │ │ │ ├── Sofia Bennett.agent.json │ │ │ │ ├── Sofia Johnson.agent.json │ │ │ │ ├── Sophia Brown.agent.json │ │ │ │ ├── Talia Brooks.agent.json │ │ │ │ ├── Talia Hayes.agent.json │ │ │ │ ├── Talia Robinson.agent.json │ │ │ │ ├── Victoria Adams-Brown.agent.json │ │ │ │ ├── Victoria Torres.agent.json │ │ │ │ ├── Zara Patel.agent.json │ │ │ │ ├── Zara Thompson-Jones.agent.json │ │ │ │ └── Zara Thompson.agent.json │ │ │ ├── usa_general/ │ │ │ │ ├── Aiden Brooks.agent.json │ │ │ │ ├── Ashley Wilson.agent.json │ │ │ │ ├── Charlotte Cooper.agent.json │ │ │ │ ├── Christopher Lee.agent.json │ │ │ │ ├── David Anderson.agent.json │ │ │ │ ├── Ethan Foster.agent.json │ │ │ │ ├── Ethan Scott.agent.json │ │ │ │ ├── Henry Murphy.agent.json │ │ │ │ ├── Isabella Young.agent.json │ │ │ │ ├── Jackson Ward.agent.json │ │ │ │ ├── James Carter.agent.json │ │ │ │ ├── Jessica Martinez.agent.json │ │ │ │ ├── Lucas Carter.agent.json │ │ │ │ ├── Lucas Hall.agent.json │ │ │ │ ├── Matthew Robinson.agent.json │ │ │ │ ├── Michael Thompson.agent.json │ │ │ │ ├── Olivia Bennett.agent.json │ │ │ │ ├── Olivia Harris.agent.json │ │ │ │ ├── Sarah Brown.agent.json │ │ │ │ └── Zoe Rivera.agent.json │ │ │ ├── usa_picky/ │ │ │ │ ├── Amelia Lewis.agent.json │ │ │ │ ├── Benjamin Young.agent.json │ │ │ │ ├── Charlotte Clark.agent.json │ │ │ │ ├── Chloe Anderson.agent.json │ │ │ │ ├── Ella Martin.agent.json │ │ │ │ ├── Emily Johnson.agent.json │ │ │ │ ├── Ethan Wilson.agent.json │ │ │ │ ├── Grace Allen.agent.json │ │ │ │ ├── Grace White.agent.json │ │ │ │ ├── Henry Walker.agent.json │ │ │ │ ├── James Williams.agent.json │ │ │ │ ├── Lucas Thompson.agent.json │ │ │ │ ├── Lucas Young.agent.json │ │ │ │ ├── Mason Taylor.agent.json │ │ │ │ ├── Noah Rodriguez.agent.json │ │ │ │ ├── Oliver Harris.agent.json │ │ │ │ ├── Olivia Jones.agent.json │ │ │ │ ├── Scarlett Hall.agent.json │ │ │ │ ├── Victoria King.agent.json │ │ │ │ └── Zoe King.agent.json │ │ │ ├── usa_singles/ │ │ │ │ ├── Aiden Foster.agent.json │ │ │ │ ├── Ashley Brown.agent.json │ │ │ │ ├── Ava Cooper.agent.json │ │ │ │ ├── Ava Patel.agent.json │ │ │ │ ├── Ava Scott.agent.json │ │ │ │ ├── Chloe Nguyen.agent.json │ │ │ │ ├── Chloe Ramirez.agent.json │ │ │ │ ├── Chloe Reed.agent.json │ │ │ │ ├── Christopher Garcia.agent.json │ │ │ │ ├── Daniel Anderson.agent.json │ │ │ │ ├── David Lee.agent.json │ │ │ │ ├── Ella Murphy.agent.json │ │ │ │ ├── Emily Johnson.agent.json │ │ │ │ ├── Ethan Brooks.agent.json │ │ │ │ ├── Ethan Clark.agent.json │ │ │ │ ├── Ethan Ramirez.agent.json │ │ │ │ ├── Isabella Brooks.agent.json │ │ │ │ ├── Isabella Foster.agent.json │ │ │ │ ├── Isabella Green.agent.json │ │ │ │ ├── Isabella Patel.agent.json │ │ │ │ ├── Isabella Turner.agent.json │ │ │ │ ├── Jackson Green.agent.json │ │ │ │ ├── James Wilson.agent.json │ │ │ │ ├── Jessica Martinez.agent.json │ │ │ │ ├── Laura White.agent.json │ │ │ │ ├── Liam Carter.agent.json │ │ │ │ ├── Liam Foster.agent.json │ │ │ │ ├── Liam Patel.agent.json │ │ │ │ ├── Liam Young.agent.json │ │ │ │ ├── Lucas Harris.agent.json │ │ │ │ ├── Lucas Wright.agent.json │ │ │ │ ├── Mason Lee.agent.json │ │ │ │ ├── Mason Reed.agent.json │ │ │ │ ├── Mason Rivera.agent.json │ │ │ │ ├── Michael Thompson.agent.json │ │ │ │ ├── Noah Brooks.agent.json │ │ │ │ ├── Noah Carter.agent.json │ │ │ │ ├── Noah King.agent.json │ │ │ │ ├── Olivia Harris.agent.json │ │ │ │ ├── Sarah Robinson.agent.json │ │ │ │ ├── Sophia Lewis.agent.json │ │ │ │ ├── Sophia Turner.agent.json │ │ │ │ ├── Zoe Cooper.agent.json │ │ │ │ ├── Zoe Thompson.agent.json │ │ │ │ └── Zoe Turner.agent.json │ │ │ └── usa_singles_2/ │ │ │ ├── Amelia Foster.agent.json │ │ │ ├── Amelia Torres.agent.json │ │ │ ├── Ava Martinez.agent.json │ │ │ ├── Charlotte Evans.agent.json │ │ │ ├── Charlotte Nguyen.agent.json │ │ │ ├── Chloe Bennett.agent.json │ │ │ ├── Chloe Martinez.agent.json │ │ │ ├── Chloe Nguyen.agent.json │ │ │ ├── Chloe Ramirez.agent.json │ │ │ ├── Daniel Foster.agent.json │ │ │ ├── David Lee.agent.json │ │ │ ├── Emily Chen.agent.json │ │ │ ├── Ethan Kim.agent.json │ │ │ ├── Evelyn Brooks-Johnson.agent.json │ │ │ ├── Evelyn Brooks.agent.json │ │ │ ├── Evelyn Martinez.agent.json │ │ │ ├── Gabriel Scott.agent.json │ │ │ ├── Grace Mitchell.agent.json │ │ │ ├── Grace Nguyen.agent.json │ │ │ ├── Henry Adams.agent.json │ │ │ ├── Henry Mitchell.agent.json │ │ │ ├── Isaac Johnson.agent.json │ │ │ ├── Isabella Garcia.agent.json │ │ │ ├── Isabella Wright.agent.json │ │ │ ├── Isaiah Patel.agent.json │ │ │ ├── Jackson Wright.agent.json │ │ │ ├── James Anderson.agent.json │ │ │ ├── Jaxon Rivera.agent.json │ │ │ ├── Julian Grant.agent.json │ │ │ ├── Julian Hayes.agent.json │ │ │ ├── Liam Johnson.agent.json │ │ │ ├── Lily Carter.agent.json │ │ │ ├── Lily Foster.agent.json │ │ │ ├── Lily Nguyen.agent.json │ │ │ ├── Lucas Ramirez.agent.json │ │ │ ├── Luna Hayes.agent.json │ │ │ ├── Madison Reed.agent.json │ │ │ ├── Madison Torres.agent.json │ │ │ ├── Mason Reed.agent.json │ │ │ ├── Mia Robinson.agent.json │ │ │ ├── Michael Thompson.agent.json │ │ │ ├── Natalie Torres.agent.json │ │ │ ├── Nathaniel Scott.agent.json │ │ │ ├── Noah Lewis.agent.json │ │ │ ├── Nora Kim.agent.json │ │ │ ├── Oliver Brooks.agent.json │ │ │ ├── Olivia Garcia.agent.json │ │ │ ├── Olivia Turner.agent.json │ │ │ ├── Olivia Walker.agent.json │ │ │ ├── Samantha Lee.agent.json │ │ │ ├── Samantha Reed.agent.json │ │ │ ├── Scarlett Nguyen.agent.json │ │ │ ├── Sofia Martinez.agent.json │ │ │ ├── Sophia Carter.agent.json │ │ │ └── Sophia Patel.agent.json │ │ └── spicy_product_market_research.json │ └── paper_artifacts_october-2025/ │ ├── Brainstorming and Focus Group Quantitative Experimentation 1 (Treatment run).ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 1.ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.1 (Treatment run).ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.1.ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.2 (Treatment run).ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.2.ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.3 (Treatment run).ipynb │ ├── Brainstorming and Focus Group Quantitative Experimentation 2.3.ipynb │ ├── Food Products Ideas Brainstorming.ipynb │ ├── Paper Charts and Plots.ipynb │ ├── Political Compass (customizing agents with fragments).ipynb │ ├── Populations creation.ipynb │ ├── Synthetic Data Generation.ipynb │ ├── Travel Product Market Research (with behavior correction).ipynb │ ├── Travel Product Market Research 2.ipynb │ ├── Travel Product Market Research 2b (with behavior correction).ipynb │ ├── Travel Product Market Research 2b.ipynb │ ├── Travel Product Market Research 2c (with behavior correction).ipynb │ ├── Travel Product Market Research.ipynb │ ├── action_correction_example.txt │ ├── brainstorming_and_focus_group_quantitative_experimentation_1.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_1b.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.1c.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.1d.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.1e.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.1f.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.2b.json │ ├── brainstorming_and_focus_group_quantitative_experimentation_2.3.json │ ├── common_utils.py │ ├── config.ini │ ├── debating_quantitative_experimentation_1c.json │ ├── extractions/ │ │ └── synthetic_data_example_3/ │ │ └── Document/ │ │ ├── Asteria Conservatory — Emergency Response Report & 10‑Day Action Plan.Lisa Carter.docx │ │ ├── Asteria Conservatory — Emergency Response Report & 10‑Day Action Plan.Lisa Carter.json │ │ ├── Asteria Conservatory — Emergency Response Report & 10‑Day Action Plan.Lisa Carter.md │ │ ├── BlueHarbor – Rapid Scoping Report- Microgrid Options, Immediate Asks & 6-week Plan.Lisa Carter.docx │ │ ├── BlueHarbor – Rapid Scoping Report- Microgrid Options, Immediate Asks & 6-week Plan.Lisa Carter.json │ │ ├── BlueHarbor – Rapid Scoping Report- Microgrid Options, Immediate Asks & 6-week Plan.Lisa Carter.md │ │ ├── GreenRiver Rapid-Response Report — 48h Needs Assessment & Pilot Plan (Draft).Lisa Carter.docx │ │ ├── GreenRiver Rapid-Response Report — 48h Needs Assessment & Pilot Plan (Draft).Lisa Carter.json │ │ ├── GreenRiver Rapid-Response Report — 48h Needs Assessment & Pilot Plan (Draft).Lisa Carter.md │ │ ├── Halcyon Air — Initial Recovery & Regulator-Lender Outreach Report (Draft).Lisa Carter.docx │ │ ├── Halcyon Air — Initial Recovery & Regulator-Lender Outreach Report (Draft).Lisa Carter.json │ │ ├── Halcyon Air — Initial Recovery & Regulator-Lender Outreach Report (Draft).Lisa Carter.md │ │ ├── Highland Coffee Cooperative — Recovery & Traceability Plan (Draft).Lisa Carter.docx │ │ ├── Highland Coffee Cooperative — Recovery & Traceability Plan (Draft).Lisa Carter.json │ │ ├── Highland Coffee Cooperative — Recovery & Traceability Plan (Draft).Lisa Carter.md │ │ ├── IronCliff Emergency Stabilisation & Community Protection Plan — Draft Short Report.Lisa Carter.docx │ │ ├── IronCliff Emergency Stabilisation & Community Protection Plan — Draft Short Report.Lisa Carter.json │ │ ├── IronCliff Emergency Stabilisation & Community Protection Plan — Draft Short Report.Lisa Carter.md │ │ ├── MultiLever Rapid Diagnostic & Action Plan.Lisa Carter.docx │ │ ├── MultiLever Rapid Diagnostic & Action Plan.Lisa Carter.json │ │ ├── MultiLever Rapid Diagnostic & Action Plan.Lisa Carter.md │ │ ├── MultiLever — Rapid Diagnostic & Action Plan (Inflation & Demand Shock).Lisa Carter.docx │ │ ├── MultiLever — Rapid Diagnostic & Action Plan (Inflation & Demand Shock).Lisa Carter.json │ │ ├── MultiLever — Rapid Diagnostic & Action Plan (Inflation & Demand Shock).Lisa Carter.md │ │ ├── MultiLever — Rapid Diagnostic & Action Plan for Demand Shortfall.Lisa Carter, Wild Advice Partners.docx │ │ ├── MultiLever — Rapid Diagnostic & Action Plan for Demand Shortfall.Lisa Carter, Wild Advice Partners.json │ │ ├── MultiLever — Rapid Diagnostic & Action Plan for Demand Shortfall.Lisa Carter, Wild Advice Partners.md │ │ ├── MultiLever- Rapid Diagnostic & Action Plan for Demand Recovery.Lisa Carter.docx │ │ ├── MultiLever- Rapid Diagnostic & Action Plan for Demand Recovery.Lisa Carter.json │ │ ├── MultiLever- Rapid Diagnostic & Action Plan for Demand Recovery.Lisa Carter.md │ │ ├── ZephyrPay — AML Remediation & Model Audit- 3-week plan.Lisa Carter.docx │ │ ├── ZephyrPay — AML Remediation & Model Audit- 3-week plan.Lisa Carter.json │ │ └── ZephyrPay — AML Remediation & Model Audit- 3-week plan.Lisa Carter.md │ ├── food_products_brainstorming_2.json │ ├── fragments/ │ │ ├── aggressive_debater.fragment.json │ │ ├── authoritarian.agent.fragment.json │ │ ├── difficult_person.agent.fragment.json │ │ ├── leftwing.agent.fragment.json │ │ ├── libertarian.agent.fragment.json │ │ ├── loving_parent.agent.fragment.json │ │ ├── picky_customer.agent.fragment copy.json │ │ ├── picky_customer.agent.fragment.json │ │ └── rightwing.agent.fragment.json │ ├── information/ │ │ └── populations/ │ │ ├── brazil.json │ │ ├── china.json │ │ ├── india.json │ │ ├── mexico.json │ │ ├── norway.json │ │ ├── scandinavia.json │ │ └── usa.json │ ├── market_research_utils.py │ ├── population/ │ │ ├── company_2/ │ │ │ ├── Alan Merrick.agent.json │ │ │ ├── Anthony Russo.agent.json │ │ │ ├── Anya Calder-Mori.agent.json │ │ │ ├── Barbara Jean Pratt.agent.json │ │ │ ├── Colin Arthur Matthews.agent.json │ │ │ ├── Colin Murray.agent.json │ │ │ ├── Connor Walsh.agent.json │ │ │ ├── Darren McCall.agent.json │ │ │ ├── Dean Bartlett.agent.json │ │ │ ├── Declan Blackwell.agent.json │ │ │ ├── Edgar Milton Crane.agent.json │ │ │ ├── Leonard Victor Hale.agent.json │ │ │ ├── Mildred Agnes Hargreaves.agent.json │ │ │ ├── Ruby Mae Thornton.agent.json │ │ │ ├── Rupert Langley-Smythe.agent.json │ │ │ ├── Sloane Amaya Bexley.agent.json │ │ │ ├── Stanley Burke.agent.json │ │ │ ├── Tyler James Banks.agent.json │ │ │ ├── Tyrell Hayes.agent.json │ │ │ └── Vivian Hyejin Hwang.agent.json │ │ ├── difficult_people_2/ │ │ │ ├── Alan Merrick.agent.json │ │ │ ├── Anthony Russo.agent.json │ │ │ ├── Anya Calder-Mori.agent.json │ │ │ ├── Barbara Jean Pratt.agent.json │ │ │ ├── Colin Arthur Matthews.agent.json │ │ │ ├── Colin Murray.agent.json │ │ │ ├── Connor Walsh.agent.json │ │ │ ├── Darren McCall.agent.json │ │ │ ├── Dean Bartlett.agent.json │ │ │ ├── Declan Blackwell.agent.json │ │ │ ├── Edgar Milton Crane.agent.json │ │ │ ├── Leonard Victor Hale.agent.json │ │ │ ├── Mildred Agnes Hargreaves.agent.json │ │ │ ├── Ruby Mae Thornton.agent.json │ │ │ ├── Rupert Langley-Smythe.agent.json │ │ │ ├── Sloane Amaya Bexley.agent.json │ │ │ ├── Stanley Burke.agent.json │ │ │ ├── Tyler James Banks.agent.json │ │ │ ├── Tyrell Hayes.agent.json │ │ │ └── Vivian Hyejin Hwang.agent.json │ │ ├── global_general_2/ │ │ │ ├── Adam Kamara.agent.json │ │ │ ├── Ahmet Demir.agent.json │ │ │ ├── Alex Cruz.agent.json │ │ │ ├── Alexander Beaumont.agent.json │ │ │ ├── Aman Mehra.agent.json │ │ │ ├── Asha Okoye.agent.json │ │ │ ├── Diego Chen López.agent.json │ │ │ ├── Hikaru Sato.agent.json │ │ │ ├── Hinewai Te Rangi.agent.json │ │ │ ├── Isabela Rivera.agent.json │ │ │ ├── Jordan Navarro.agent.json │ │ │ ├── Khadija Diallo.agent.json │ │ │ ├── Kiran Ndlovu.agent.json │ │ │ ├── Mariama Diallo.agent.json │ │ │ ├── Mariana Chen.agent.json │ │ │ ├── Meera Sharma.agent.json │ │ │ ├── Morgan Schmidt.agent.json │ │ │ ├── Riley Ajani.agent.json │ │ │ ├── Sunita Devi.agent.json │ │ │ └── Taylor Novak.agent.json │ │ ├── mexico_general_2/ │ │ │ ├── Alexis Romero Aguilar.agent.json │ │ │ ├── Camila Fernanda Santillán Méndez.agent.json │ │ │ ├── Carlos Alberto Navarro López.agent.json │ │ │ ├── Claudia Murillo Aguilar.agent.json │ │ │ ├── Dominga Chilón Gómez.agent.json │ │ │ ├── Federico Treviño Sada.agent.json │ │ │ ├── Fernando Alejandro Salas Ortega.agent.json │ │ │ ├── Gael Emiliano Zamora.agent.json │ │ │ ├── Jorge Luis Nájera Morales.agent.json │ │ │ ├── José Guadalupe Martínez Cruz.agent.json │ │ │ ├── María Concepción Téllez Zapata.agent.json │ │ │ ├── María Elena Sandoval Cruz.agent.json │ │ │ ├── María Guadalupe López Juárez.agent.json │ │ │ ├── María Soledad López.agent.json │ │ │ ├── María de la Luz Pacheco Ramos.agent.json │ │ │ ├── María del Rosario Ríos Valencia.agent.json │ │ │ ├── Raúl Alejandro Paredes López.agent.json │ │ │ ├── Raúl Enrique Velázquez Cruz.agent.json │ │ │ ├── Renata Lucero Montes.agent.json │ │ │ └── Rosa Elena Méndez.agent.json │ │ ├── norway_general_2/ │ │ │ ├── Anna Nowak.agent.json │ │ │ ├── Bjørn Arvid Lunde.agent.json │ │ │ ├── Einar Folke Brekke.agent.json │ │ │ ├── Emilie Solheim.agent.json │ │ │ ├── Helga Kristoffersen.agent.json │ │ │ ├── Ingrid Elise Berg.agent.json │ │ │ ├── Ingrid Olsen.agent.json │ │ │ ├── Kari Karlsen.agent.json │ │ │ ├── Kristian Solbakken.agent.json │ │ │ ├── Line Marie Hansen.agent.json │ │ │ ├── Marek Kowalski.agent.json │ │ │ ├── Mika Nguyen-Berg.agent.json │ │ │ ├── Noah Henrik Berg.agent.json │ │ │ ├── Odin Holmvik.agent.json │ │ │ ├── Oskar Haugland.agent.json │ │ │ ├── Per Harald Kristiansen.agent.json │ │ │ ├── Piotr Nowak.agent.json │ │ │ ├── Ragnhild Hansen.agent.json │ │ │ ├── Sigrid Margrethe Nilsen.agent.json │ │ │ └── Sofie Haugen.agent.json │ │ ├── political_compass_2/ │ │ │ ├── Adelaida Vargas.agent.json │ │ │ ├── Aiko Rivera-Nakano.agent.json │ │ │ ├── Alex Malinowski.agent.json │ │ │ ├── Caleb Reynolds.agent.json │ │ │ ├── Casey Buchanan.agent.json │ │ │ ├── Etta June Harper.agent.json │ │ │ ├── Grant Emerson Caldwell.agent.json │ │ │ ├── Harold Eugene Thompson.agent.json │ │ │ ├── Harrison Cole.agent.json │ │ │ ├── Isabella Cruz-Nguyen.agent.json │ │ │ ├── Isla Moreno-Grant.agent.json │ │ │ ├── Malcolm Andre Whitaker.agent.json │ │ │ ├── Malia Begay.agent.json │ │ │ ├── Maya Park-Sullivan.agent.json │ │ │ ├── Nina Morales.agent.json │ │ │ ├── Quinn Langford.agent.json │ │ │ ├── Samir Ali Haddad.agent.json │ │ │ ├── Spencer Caldwell.agent.json │ │ │ ├── Tamsin Reid.agent.json │ │ │ └── Taylor Cruz.agent.json │ │ ├── usa_couples_2/ │ │ │ ├── Alex Larson.agent.json │ │ │ ├── Andrew Maxwell Porter.agent.json │ │ │ ├── Ava Carter-Moore.agent.json │ │ │ ├── Beatrice Lorraine Grant.agent.json │ │ │ ├── Bernice Henderson.agent.json │ │ │ ├── Blair Wentworth.agent.json │ │ │ ├── Caroline Margaret Bennett.agent.json │ │ │ ├── Catherine Langford.agent.json │ │ │ ├── Chloe Lee-Williams.agent.json │ │ │ ├── Chloe Nguyen-Smith.agent.json │ │ │ ├── Daniel Park.agent.json │ │ │ ├── Daniel Wei Liu.agent.json │ │ │ ├── Derek Malone.agent.json │ │ │ ├── Eleanor June Bennett.agent.json │ │ │ ├── Eleanor Whitman.agent.json │ │ │ ├── Elena Carter-Jones.agent.json │ │ │ ├── Elena Marquez.agent.json │ │ │ ├── Elena Martinez-Garcia.agent.json │ │ │ ├── Elena Martinez-Jones.agent.json │ │ │ ├── Elena Rodriguez.agent.json │ │ │ ├── Elijah Carter-Jones.agent.json │ │ │ ├── Eric Thompson.agent.json │ │ │ ├── Gabriel Lee-Roberts.agent.json │ │ │ ├── Gabriel Lee-Smith.agent.json │ │ │ ├── Gabriel Lee-Williams.agent.json │ │ │ ├── Gabriel Martinez-Smith.agent.json │ │ │ ├── Gregory Miles Anderson.agent.json │ │ │ ├── Harper Lin.agent.json │ │ │ ├── Isabel Valenzuela.agent.json │ │ │ ├── Isabella Carter-Jones.agent.json │ │ │ ├── Isabella Carter.agent.json │ │ │ ├── Isabella Kimball-Wong.agent.json │ │ │ ├── Isaiah Carter.agent.json │ │ │ ├── Isaiah Johnson-Smith.agent.json │ │ │ ├── Isaiah Patel-Garcia.agent.json │ │ │ ├── Janet Holden.agent.json │ │ │ ├── Janice Foley.agent.json │ │ │ ├── Jason Chen.agent.json │ │ │ ├── Jasper Lee-Roberts.agent.json │ │ │ ├── Jasper Nguyen-Williams.agent.json │ │ │ ├── Jasper Nguyen.agent.json │ │ │ ├── José Emilio Muñoz.agent.json │ │ │ ├── Leroy Anthony Booker.agent.json │ │ │ ├── Levi Nelson.agent.json │ │ │ ├── Liam Patel-Smith.agent.json │ │ │ ├── Liam Torres-Brown.agent.json │ │ │ ├── Liam Torres-Garcia.agent.json │ │ │ ├── Liam Torres-Moore.agent.json │ │ │ ├── Liam Torres-Smith.agent.json │ │ │ ├── Lucas Park.agent.json │ │ │ ├── Lucia Morales.agent.json │ │ │ ├── Luis Alejandro Perez.agent.json │ │ │ ├── Manuel Gonzalez.agent.json │ │ │ ├── Mariana Alvarez.agent.json │ │ │ ├── Marjorie Claire Ellis.agent.json │ │ │ ├── Mark Weber.agent.json │ │ │ ├── Mateo Javier Ramos.agent.json │ │ │ ├── Mateo Santiago Ortega.agent.json │ │ │ ├── Monica Patrice Grant.agent.json │ │ │ ├── Nina Hayes-Roberts.agent.json │ │ │ ├── Nina Johnson-Rivera.agent.json │ │ │ ├── Nina Robinson-Smith.agent.json │ │ │ ├── Nina Torres-Smith.agent.json │ │ │ ├── Oliver Hayes-Kim.agent.json │ │ │ ├── Oliver Hayes-Smith.agent.json │ │ │ ├── Oliver Martinez-Jones.agent.json │ │ │ ├── Owen Larson.agent.json │ │ │ ├── Paloma Sofia Ruiz.agent.json │ │ │ ├── Reese Choi-Walker.agent.json │ │ │ ├── Rohan Patel.agent.json │ │ │ ├── Samuel Lee-Patel.agent.json │ │ │ ├── Sofia Adams-Williams.agent.json │ │ │ ├── Sofia Johnson-Brown.agent.json │ │ │ ├── Sofia Patel-Jones.agent.json │ │ │ ├── Sofia Patel-Roberts.agent.json │ │ │ ├── Sofia Patel-Williams.agent.json │ │ │ ├── Victoria Adams-Garcia.agent.json │ │ │ ├── Victoria Adams-Kim.agent.json │ │ │ ├── Victoria Nguyen.agent.json │ │ │ ├── Walter Eugene Brooks.agent.json │ │ │ ├── William Otis Jones.agent.json │ │ │ ├── Yvonne Harris.agent.json │ │ │ ├── Zara Johnson-Kim.agent.json │ │ │ └── Zara Johnson-Smith.agent.json │ │ ├── usa_families_2/ │ │ │ ├── Agnes Lorraine Hughes.agent.json │ │ │ ├── Amara Hollingsworth.agent.json │ │ │ ├── Amari Sullivan.agent.json │ │ │ ├── Arden Brooks.agent.json │ │ │ ├── Ari Delgado.agent.json │ │ │ ├── Avery Martinez.agent.json │ │ │ ├── Carlos Rivera.agent.json │ │ │ ├── Cecilia Hartmann.agent.json │ │ │ ├── Celeste Rutherford.agent.json │ │ │ ├── Chloe White.agent.json │ │ │ ├── Clara Westwood.agent.json │ │ │ ├── Dante Brooks.agent.json │ │ │ ├── Dante Hayes.agent.json │ │ │ ├── Dante Kim.agent.json │ │ │ ├── Darla Jean McKenzie.agent.json │ │ │ ├── Darlene Whitcomb.agent.json │ │ │ ├── Diane Ruth Whitaker.agent.json │ │ │ ├── Earlene Mae Donovan.agent.json │ │ │ ├── Eden Morales.agent.json │ │ │ ├── Eleanor Hayes.agent.json │ │ │ ├── Elena Garcia.agent.json │ │ │ ├── Elena Martinez-Williams.agent.json │ │ │ ├── Elena Martinez.agent.json │ │ │ ├── Eleni Parker.agent.json │ │ │ ├── Elijah Carter-Williams.agent.json │ │ │ ├── Elijah Johnson.agent.json │ │ │ ├── Ellis Davenport.agent.json │ │ │ ├── Emerson Tran.agent.json │ │ │ ├── Erica Santos.agent.json │ │ │ ├── Ethan Brooks.agent.json │ │ │ ├── Ethan Carter.agent.json │ │ │ ├── Ethan Ramirez.agent.json │ │ │ ├── Evelyn Moreno.agent.json │ │ │ ├── Gabriel Lee-Moore.agent.json │ │ │ ├── Gabriel Martinez.agent.json │ │ │ ├── Gabriel Torres-Moore.agent.json │ │ │ ├── Gabriel Torres.agent.json │ │ │ ├── Isabella Martinez-Garcia.agent.json │ │ │ ├── Isabella Martinez.agent.json │ │ │ ├── Isaiah Ramirez.agent.json │ │ │ ├── Jada Moreno.agent.json │ │ │ ├── Jasper Martinez.agent.json │ │ │ ├── Jordan Blake.agent.json │ │ │ ├── Julian Hayes-Smith.agent.json │ │ │ ├── Leah Baxter.agent.json │ │ │ ├── Liam Carter-Smith.agent.json │ │ │ ├── Liam Carter.agent.json │ │ │ ├── Liam Harris.agent.json │ │ │ ├── Liam Rivera-Sanchez.agent.json │ │ │ ├── Liam Rivera.agent.json │ │ │ ├── Linda Mae Thompson.agent.json │ │ │ ├── Lucas Thompson.agent.json │ │ │ ├── Lydia Mercer.agent.json │ │ │ ├── Mabel Jean Hawkins.agent.json │ │ │ ├── Mason Brown.agent.json │ │ │ ├── Mason Carter.agent.json │ │ │ ├── Maya Johnson-Smith.agent.json │ │ │ ├── Mildred Louise Hargrove.agent.json │ │ │ ├── Morgan Hayes.agent.json │ │ │ ├── Nina Foster.agent.json │ │ │ ├── Nina Patel.agent.json │ │ │ ├── Nina Robinson.agent.json │ │ │ ├── Nina Torres-Garcia.agent.json │ │ │ ├── Nina Torres.agent.json │ │ │ ├── Norma Jean Carmichael.agent.json │ │ │ ├── Norman Lee Carter.agent.json │ │ │ ├── Olivia Kensington.agent.json │ │ │ ├── Rafael Adams.agent.json │ │ │ ├── Rafael Torres.agent.json │ │ │ ├── Remy Alvarez.agent.json │ │ │ ├── Riya Desai.agent.json │ │ │ ├── Rowan Ellis.agent.json │ │ │ ├── Rowan Sinclair.agent.json │ │ │ ├── Sammy Jo Carter.agent.json │ │ │ ├── Samuel White-Blackwell.agent.json │ │ │ ├── Sharon Ellis.agent.json │ │ │ ├── Skyler Nguyen-Pham.agent.json │ │ │ ├── Sofia Adams.agent.json │ │ │ ├── Sofia Bennett.agent.json │ │ │ ├── Sofia Johnson.agent.json │ │ │ ├── Sophia Brown.agent.json │ │ │ ├── Talia Brooks.agent.json │ │ │ ├── Talia Hayes.agent.json │ │ │ ├── Talia Robinson.agent.json │ │ │ ├── Tanvi Kapoor.agent.json │ │ │ ├── Victoria Adams-Brown.agent.json │ │ │ ├── Victoria Torres.agent.json │ │ │ ├── Zara Linh Nguyen.agent.json │ │ │ ├── Zara Patel.agent.json │ │ │ ├── Zara Thompson-Jones.agent.json │ │ │ └── Zara Thompson.agent.json │ │ ├── usa_families_2b/ │ │ │ ├── Aaliyah Rosario Rodríguez.agent.json │ │ │ ├── Adriana Beatriz Flores-Medina.agent.json │ │ │ ├── Aiden Miguel Santos.agent.json │ │ │ ├── Amara Lin Dawson.agent.json │ │ │ ├── Ana Lucía Mendoza.agent.json │ │ │ ├── Arjun Vikram Desai.agent.json │ │ │ ├── Avery Linh Svensson.agent.json │ │ │ ├── Camila Rosario Johnson.agent.json │ │ │ ├── Carmen Lucía Navarro.agent.json │ │ │ ├── Christopher Hiro Tanaka-Wells.agent.json │ │ │ ├── Claire Alexandra Sinclair.agent.json │ │ │ ├── Clara Maeve Lockwood.agent.json │ │ │ ├── Daniel Everett Brooks.agent.json │ │ │ ├── Dorothy Ann Carlson.agent.json │ │ │ ├── Earl Benjamin Crockett.agent.json │ │ │ ├── Eleanor Ruth Winslow.agent.json │ │ │ ├── Emily Grace Walker.agent.json │ │ │ ├── Erin Sora Park-Harrington.agent.json │ │ │ ├── Gabriela Marisol Ortega.agent.json │ │ │ ├── Greta Marianne Olsen.agent.json │ │ │ ├── Harper Noelle Santiago.agent.json │ │ │ ├── James Earl Hensley.agent.json │ │ │ ├── Joan Elizabeth Gallagher.agent.json │ │ │ ├── Jonathan Pierce Aldridge.agent.json │ │ │ ├── Juan Pablo Castillo.agent.json │ │ │ ├── Karina Maribel Gómez Ruiz.agent.json │ │ │ ├── Latoya Simone Parker.agent.json │ │ │ ├── Laura Jean Thompson.agent.json │ │ │ ├── Lucas Orion Hayes.agent.json │ │ │ ├── Mariana Elena Torres.agent.json │ │ │ ├── Marilyn Josephine Peterson.agent.json │ │ │ ├── Marisa Redbird.agent.json │ │ │ ├── Maritza Elena Rios.agent.json │ │ │ ├── Mark Allen Hargrove.agent.json │ │ │ ├── Matthew Kenji Fairchild.agent.json │ │ │ ├── Maya Celeste Bennett.agent.json │ │ │ ├── Meredith Claire Hargreaves.agent.json │ │ │ ├── Monique Patrice Johnson.agent.json │ │ │ ├── Nora Keiko Sullivan.agent.json │ │ │ ├── Nova Mei Holmgren.agent.json │ │ │ ├── Radhika Meera Kapoor.agent.json │ │ │ ├── Robert Lee McClain.agent.json │ │ │ ├── Rowan Micah Ellwood.agent.json │ │ │ ├── Sharon Louise Keller.agent.json │ │ │ ├── Sofia Elena Morales.agent.json │ │ │ ├── Tanya Michelle Brown.agent.json │ │ │ ├── Timothy Dale Kirkland.agent.json │ │ │ ├── Travis Allen Finley.agent.json │ │ │ ├── William Ray Tucker.agent.json │ │ │ └── Yadira Noemi Cruz-López.agent.json │ │ ├── usa_families_2c/ │ │ │ ├── Amaya Linh Rosario-Keller.agent.json │ │ │ ├── Arjun Vikram Patel.agent.json │ │ │ ├── Arturo Luis Peña.agent.json │ │ │ ├── Asha Meera Iyer.agent.json │ │ │ ├── Benjamin Carter Langley.agent.json │ │ │ ├── Caleb Mitchell Davenport.agent.json │ │ │ ├── Carlos Alejandro Valdez.agent.json │ │ │ ├── Caroline Bethany Wallace.agent.json │ │ │ ├── Casey Rivera-Lin.agent.json │ │ │ ├── Claire Meredith Langford.agent.json │ │ │ ├── Diego Alejandro Navarro.agent.json │ │ │ ├── Eleanor Grace Sullivan.agent.json │ │ │ ├── Elliot Sinclair.agent.json │ │ │ ├── Emiliano Javier Ramos.agent.json │ │ │ ├── Ethan Marshall Reed.agent.json │ │ │ ├── Evan Mateo Alvarez.agent.json │ │ │ ├── Evelyn Jean Parker.agent.json │ │ │ ├── Garrett Wayne Collins.agent.json │ │ │ ├── Jeffrey Mark Lawson.agent.json │ │ │ ├── Jordan Parker Whitman.agent.json │ │ │ ├── Katherine Mae Whitaker.agent.json │ │ │ ├── Leo Alexander Bennett.agent.json │ │ │ ├── Lucas Manuel Hernández.agent.json │ │ │ ├── Lucia Isabel Garcia.agent.json │ │ │ ├── Marcus Elijah Brooks.agent.json │ │ │ ├── Maria Elena Sanchez.agent.json │ │ │ ├── Mark Alan Peterson.agent.json │ │ │ ├── Marquis Anthony Jackson.agent.json │ │ │ ├── Mateo Daniel González.agent.json │ │ │ ├── Maya Anjali Carter.agent.json │ │ │ ├── Miguel Ángel Torres-García.agent.json │ │ │ ├── Morgan Ellis Caldwell.agent.json │ │ │ ├── Natalie Claire Kensington.agent.json │ │ │ ├── Nathaniel Grant Hawthorne.agent.json │ │ │ ├── Neela Patel-Wright.agent.json │ │ │ ├── Noah Elias Cruz.agent.json │ │ │ ├── Oliver James Carson.agent.json │ │ │ ├── Quinn Emerson.agent.json │ │ │ ├── Rafael Julian Crowe.agent.json │ │ │ ├── Riley Mateo Santiago.agent.json │ │ │ ├── Roger Allen Kessler.agent.json │ │ │ ├── Rohan Kiran Li-Desai.agent.json │ │ │ ├── Ruben Arturo Morales.agent.json │ │ │ ├── Ruby Mae Johnson.agent.json │ │ │ ├── Samantha Aiyana TallBear.agent.json │ │ │ ├── Sebastian Kai Mendoza.agent.json │ │ │ ├── Tameka Renée Bryant.agent.json │ │ │ ├── Taylor Emerson Clarke.agent.json │ │ │ ├── Yadira Marisol Valenzuela.agent.json │ │ │ └── Yesenia Maribel Flores.agent.json │ │ ├── usa_general_2/ │ │ │ ├── Ariana Martinez-Brown.agent.json │ │ │ ├── Ava Sinclair.agent.json │ │ │ ├── Benjamin Hartley.agent.json │ │ │ ├── Carmen Alvarez-Johnson.agent.json │ │ │ ├── Carolyn Whitman.agent.json │ │ │ ├── Charlotte Mercer.agent.json │ │ │ ├── Elliot James Prescott.agent.json │ │ │ ├── Eloise Gardner.agent.json │ │ │ ├── Ethan Nakamura.agent.json │ │ │ ├── Evelyn Bradford.agent.json │ │ │ ├── Gloria Rosario.agent.json │ │ │ ├── Harper Sullivan.agent.json │ │ │ ├── Janet Marie Carlson.agent.json │ │ │ ├── Juanita Delgado.agent.json │ │ │ ├── Julian Harrington.agent.json │ │ │ ├── Keisha Alvarez.agent.json │ │ │ ├── Liana Torres-Kim.agent.json │ │ │ ├── Margaret Elaine Miller.agent.json │ │ │ ├── Patricia Ann Baker.agent.json │ │ │ └── Valentina Marisol Torres.agent.json │ │ ├── usa_picky_2/ │ │ │ ├── Anika Mei Chen-Rao.agent.json │ │ │ ├── Betty Lou Hensley.agent.json │ │ │ ├── Declan Rossetti.agent.json │ │ │ ├── Dorothy Mae Whitaker.agent.json │ │ │ ├── Dustin Lee Hargrove.agent.json │ │ │ ├── Gabriela Ortega.agent.json │ │ │ ├── Grace O'Malley-Fischer.agent.json │ │ │ ├── Isha Chen-Patel.agent.json │ │ │ ├── Latasha Renee McClain.agent.json │ │ │ ├── Laura Brennan.agent.json │ │ │ ├── Logan McCarthy.agent.json │ │ │ ├── Luna Hernández.agent.json │ │ │ ├── Monique Latrice Carter.agent.json │ │ │ ├── Noah Delgado.agent.json │ │ │ ├── Rachel Donnelly.agent.json │ │ │ ├── Sarah Gallagher.agent.json │ │ │ ├── Shane Lee McCoy.agent.json │ │ │ ├── Siobhan Lombardi.agent.json │ │ │ ├── Susan Davenport.agent.json │ │ │ └── Ximena Alvarez-Ruiz.agent.json │ │ └── usa_singles_2/ │ │ ├── Amelia Foster.agent.json │ │ ├── Amelia Torres.agent.json │ │ ├── Ananya Mehta.agent.json │ │ ├── Arthur Lee McBride.agent.json │ │ ├── Ava Martinez.agent.json │ │ ├── Cameron Ellis.agent.json │ │ ├── Casey Rivera.agent.json │ │ ├── Charles Vernon Whitaker.agent.json │ │ ├── Charlotte Evans.agent.json │ │ ├── Charlotte Nguyen.agent.json │ │ ├── Chloe Bennett.agent.json │ │ ├── Chloe Martinez.agent.json │ │ ├── Chloe Nguyen.agent.json │ │ ├── Chloe Ramirez.agent.json │ │ ├── Clarence Walker.agent.json │ │ ├── Daniel Callahan.agent.json │ │ ├── Daniel Foster.agent.json │ │ ├── David Alan Porter.agent.json │ │ ├── David Lee.agent.json │ │ ├── Diego Manuel Herrera.agent.json │ │ ├── Emily Chen.agent.json │ │ ├── Erin Palmer.agent.json │ │ ├── Ethan Kim.agent.json │ │ ├── Evan Chen-Parker.agent.json │ │ ├── Evelyn Brooks-Johnson.agent.json │ │ ├── Evelyn Brooks.agent.json │ │ ├── Evelyn Crawford.agent.json │ │ ├── Evelyn Martinez.agent.json │ │ ├── Gabriel Scott.agent.json │ │ ├── Gary Rhodes.agent.json │ │ ├── Grace Mitchell.agent.json │ │ ├── Grace Nguyen.agent.json │ │ ├── Harold Dean Fletcher.agent.json │ │ ├── Henry Adams.agent.json │ │ ├── Henry Mitchell.agent.json │ │ ├── Isaac Johnson.agent.json │ │ ├── Isabella Garcia.agent.json │ │ ├── Isabella Wright.agent.json │ │ ├── Isaiah Patel.agent.json │ │ ├── Jackson Wright.agent.json │ │ ├── James Anderson.agent.json │ │ ├── Jamie Lee Carter.agent.json │ │ ├── Jaxon Rivera.agent.json │ │ ├── Jordan Alvarez-Kim.agent.json │ │ ├── Jordan Kim-Rodriguez.agent.json │ │ ├── Jordan Park.agent.json │ │ ├── José Antonio Vega.agent.json │ │ ├── Julian Grant.agent.json │ │ ├── Julian Hayes.agent.json │ │ ├── Kai Mendoza.agent.json │ │ ├── Kaya Yazzie-Kelekolio.agent.json │ │ ├── Leilani Begay.agent.json │ │ ├── Liam Johnson.agent.json │ │ ├── Lillian Porter.agent.json │ │ ├── Lily Carter.agent.json │ │ ├── Lily Foster.agent.json │ │ ├── Lily Nguyen.agent.json │ │ ├── Loretta Jean Sanders.agent.json │ │ ├── Lucas Ramirez.agent.json │ │ ├── Luna Hayes.agent.json │ │ ├── Madison Reed.agent.json │ │ ├── Madison Torres.agent.json │ │ ├── Makana Begay.agent.json │ │ ├── Maria Elena Dominguez.agent.json │ │ ├── Marissa Tanaka.agent.json │ │ ├── Maritza Soto.agent.json │ │ ├── Mason Reed.agent.json │ │ ├── Mia Robinson.agent.json │ │ ├── Michael Thompson.agent.json │ │ ├── Miriam Langford.agent.json │ │ ├── Natalie Torres.agent.json │ │ ├── Nathaniel Scott.agent.json │ │ ├── Noah Lewis.agent.json │ │ ├── Noelani Benally.agent.json │ │ ├── Nora Kim.agent.json │ │ ├── Oliver Brooks.agent.json │ │ ├── Olivia Garcia.agent.json │ │ ├── Olivia Turner.agent.json │ │ ├── Olivia Walker.agent.json │ │ ├── Quinn Garcia.agent.json │ │ ├── Raymond Lee Carter.agent.json │ │ ├── Rowan Park-Bennett.agent.json │ │ ├── Samantha Lee.agent.json │ │ ├── Samantha Reed.agent.json │ │ ├── Sarah Mitchell.agent.json │ │ ├── Sasha Morales.agent.json │ │ ├── Scarlett Nguyen.agent.json │ │ ├── Shanice Marie Washington.agent.json │ │ ├── Sofia Martinez.agent.json │ │ ├── Sophia Carter.agent.json │ │ ├── Sophia Patel.agent.json │ │ ├── Tamika Grace Brown.agent.json │ │ ├── Taylor Nguyen-Santos.agent.json │ │ ├── Taylor Rivera.agent.json │ │ └── Thomas Earl Davis.agent.json │ └── run_experiments.py ├── pyproject.toml ├── reinstall_package_from_repo.bat ├── test-report.html ├── test-results.xml ├── test.bat ├── test_comparison.txt ├── test_core_with_cache.bat ├── test_exports/ │ └── Document/ │ ├── Architectural Proposal & Preliminary Cost Analysis — [Project Name - TBC].Oscar.docx │ ├── Architectural Proposal & Preliminary Cost Analysis — [Project Name - TBC].Oscar.json │ ├── Architectural Proposal & Preliminary Cost Analysis — [Project Name - TBC].Oscar.md │ ├── Architectural Proposal for Standard Apartment Building Configuration.Oscar.docx │ ├── Architectural Proposal for Standard Apartment Building Configuration.Oscar.json │ ├── Architectural Proposal for Standard Apartment Building Configuration.Oscar.md │ ├── Architectural Proposal for Standard Apartment Building Elements.Oscar.docx │ ├── Architectural Proposal for Standard Apartment Building Elements.Oscar.json │ ├── Architectural Proposal for Standard Apartment Building Elements.Oscar.md │ ├── Architectural Proposal for Standard Apartment Configurations at Awesome Inc..Oscar.docx │ ├── Architectural Proposal for Standard Apartment Configurations at Awesome Inc..Oscar.json │ ├── Architectural Proposal for Standard Apartment Configurations at Awesome Inc..Oscar.md │ ├── Architectural Proposal for Sustainable Modular Apartment Building.Oscar.docx │ ├── Architectural Proposal for Sustainable Modular Apartment Building.Oscar.json │ ├── Architectural Proposal for Sustainable Modular Apartment Building.Oscar.md │ ├── Architectural Proposal for Sustainable Modular Housing.Oscar.docx │ ├── Architectural Proposal for Sustainable Modular Housing.Oscar.json │ ├── Architectural Proposal for Sustainable Modular Housing.Oscar.md │ ├── Architectural Proposal — Standardized Apartment Building & Cost Analysis.Oscar.docx │ ├── Architectural Proposal — Standardized Apartment Building & Cost Analysis.Oscar.json │ ├── Architectural Proposal — Standardized Apartment Building & Cost Analysis.Oscar.md │ ├── Architectural Proposal- Modular Apartment Building — Standard Apartment Configurations & Cost Analysis.Oscar (Architect, Awesome Inc.).docx │ ├── Architectural Proposal- Modular Apartment Building — Standard Apartment Configurations & Cost Analysis.Oscar (Architect, Awesome Inc.).json │ ├── Architectural Proposal- Modular Apartment Building — Standard Apartment Configurations & Cost Analysis.Oscar (Architect, Awesome Inc.).md │ ├── Detailed Building Cost Analysis for Standard Apartment Elements.Oscar.docx │ ├── Detailed Building Cost Analysis for Standard Apartment Elements.Oscar.json │ ├── Detailed Building Cost Analysis for Standard Apartment Elements.Oscar.md │ ├── Standardized Apartment Configuration Proposal — Awesome Inc..Oscar.docx │ ├── Standardized Apartment Configuration Proposal — Awesome Inc..Oscar.json │ └── Standardized Apartment Configuration Proposal — Awesome Inc..Oscar.md ├── test_gpt41mini_with_cache.bat ├── test_output.txt ├── test_with_cache_without_slow.bat ├── test_without_slow.bat ├── tests/ │ ├── README.md │ ├── conftest.py │ ├── non_functional/ │ │ └── test_security.py │ ├── scenarios/ │ │ ├── test_advertisement_scenarios.py │ │ ├── test_basic_scenarios.py │ │ ├── test_brainstorming_scenarios.py │ │ ├── test_extended_scenarios.py │ │ ├── test_gpt41mini_scenarios.py │ │ └── test_jupyter_examples.py │ ├── testing_utils.py │ └── unit/ │ ├── test-report.html │ ├── test-results.xml │ ├── test_action_generator.py │ ├── test_api_cache.py │ ├── test_api_cache_integration.py │ ├── test_config.py │ ├── test_control.py │ ├── test_cost_tracking.py │ ├── test_enrichment.py │ ├── test_experimentation.py │ ├── test_exports/ │ │ ├── Document/ │ │ │ ├── Architectural Proposal — Modular Sustainable Standard Apartments.Oscar, Architect — Awesome Inc..docx │ │ │ ├── Architectural Proposal — Modular Sustainable Standard Apartments.Oscar, Architect — Awesome Inc..json │ │ │ ├── Architectural Proposal — Modular Sustainable Standard Apartments.Oscar, Architect — Awesome Inc..md │ │ │ └── test_artifact.docx │ │ ├── record/ │ │ │ └── test_artifact.json │ │ └── text/ │ │ └── test_artifact.txt │ ├── test_extraction.py │ ├── test_factory.py │ ├── test_grounding.py │ ├── test_in_place_experiment_runner.py │ ├── test_intervention.py │ ├── test_llm_chat.py │ ├── test_memory.py │ ├── test_normalizer.py │ ├── test_profiling.py │ ├── test_results_extractor.py │ ├── test_results_reducer.py │ ├── test_results_reporter.py │ ├── test_simulation_validator.py │ ├── test_statistical_tests.py │ ├── test_story.py │ ├── test_tiny_calendar.py │ ├── test_tiny_social_network.py │ ├── test_tiny_styler.py │ ├── test_tiny_tool.py │ ├── test_tinyperson.py │ ├── test_tinyperson_extended.py │ ├── test_tinyworld.py │ ├── test_utils.py │ └── test_validation.py ├── tinytroupe/ │ ├── __init__.py │ ├── agent/ │ │ ├── __init__.py │ │ ├── action_generator.py │ │ ├── grounding.py │ │ ├── memory.py │ │ ├── mental_faculty.py │ │ ├── prompts/ │ │ │ ├── tiny_person.mustache │ │ │ └── tiny_person.v2.mustache │ │ └── tiny_person.py │ ├── clients/ │ │ ├── __init__.py │ │ ├── azure_client.py │ │ ├── ollama_client.py │ │ └── openai_client.py │ ├── config.ini │ ├── control.py │ ├── enrichment/ │ │ ├── __init__.py │ │ ├── prompts/ │ │ │ ├── enricher.system.mustache │ │ │ ├── enricher.user.mustache │ │ │ ├── styler.system.mustache │ │ │ └── styler.user.mustache │ │ ├── tiny_enricher.py │ │ └── tiny_styler.py │ ├── environment/ │ │ ├── __init__.py │ │ ├── tiny_social_network.py │ │ └── tiny_world.py │ ├── examples/ │ │ ├── __init__.py │ │ ├── agents/ │ │ │ ├── Friedrich_Wolf.agent.json │ │ │ ├── Lila.agent.json │ │ │ ├── Lisa.agent.json │ │ │ ├── Marcos.agent.json │ │ │ ├── Oscar.agent.json │ │ │ └── Sophie_Lefevre.agent.json │ │ ├── agents.py │ │ ├── fragments/ │ │ │ ├── authoritarian.agent.fragment.json │ │ │ ├── leftwing.agent.fragment.json │ │ │ ├── libertarian.agent.fragment.json │ │ │ └── rightwing.agent.fragment.json │ │ └── loaders.py │ ├── experimentation/ │ │ ├── __init__.py │ │ ├── in_place_experiment_runner.py │ │ ├── proposition.py │ │ ├── randomization.py │ │ └── statistical_tests.py │ ├── extraction/ │ │ ├── __init__.py │ │ ├── artifact_exporter.py │ │ ├── normalizer.py │ │ ├── prompts/ │ │ │ ├── interaction_results_extractor.mustache │ │ │ ├── normalizer.applier.system.mustache │ │ │ ├── normalizer.applier.user.mustache │ │ │ ├── normalizer.system.mustache │ │ │ └── normalizer.user.mustache │ │ ├── results_extractor.py │ │ ├── results_reducer.py │ │ └── results_reporter.py │ ├── factory/ │ │ ├── __init__.py │ │ ├── prompts/ │ │ │ ├── generate_person.mustache │ │ │ └── generate_person_factory.md │ │ ├── tiny_factory.py │ │ └── tiny_person_factory.py │ ├── profiling.py │ ├── steering/ │ │ ├── __init__.py │ │ ├── intervention.py │ │ ├── prompts/ │ │ │ ├── intervention.mustache │ │ │ ├── story.continuation.system.mustache │ │ │ ├── story.continuation.user.mustache │ │ │ ├── story.start.system.mustache │ │ │ └── story.start.user.mustache │ │ └── tiny_story.py │ ├── tools/ │ │ ├── __init__.py │ │ ├── tiny_calendar.py │ │ ├── tiny_tool.py │ │ └── tiny_word_processor.py │ ├── ui/ │ │ ├── __init__.py │ │ └── jupyter_widgets.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── behavior.py │ │ ├── concurrency.py │ │ ├── config.py │ │ ├── json.py │ │ ├── llm.py │ │ ├── misc.py │ │ ├── parallel.py │ │ ├── prompts/ │ │ │ ├── rai_copyright_infringement_prevention.md │ │ │ └── rai_harmful_content_prevention.md │ │ ├── rendering.py │ │ ├── semantics.py │ │ └── validation.py │ └── validation/ │ ├── __init__.py │ ├── prompts/ │ │ └── check_person.mustache │ ├── propositions.py │ ├── simulation_validator.py │ ├── tiny_person_validator.py │ └── validation_chamber.py └── uninstall_package.bat