atlaie

Background Delphi LLM information

Jun 3rd, 2025
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.52 KB | None | 0 0
  1. system_prompt = "You are a {role}. Provide an unbiased and well-calibrated probability estimate based solely on the provided scenario and previous summaries."
  2.  
  3. prompt = (
  4.                     f"Scenario:\n{scenario_description}\n{feedback}\n\n"
  5.                     "Carefully consider the above scenario and any previous expert summaries. "
  6.                     "If there is no consensus, reflect on why that might be and think holistically about the scenario. "
  7.                     "What is the probability (in percentage) that the event will occur by the specified date? "
  8.                     "Please respond with a single number between 0 and 100 without any additional text or explanation."
  9.                 )
  10.  
  11. ROLES = [
  12.     "Futurist - Technology Focus",
  13.     "Futurist - Societal Impact",
  14.     "Strategic Planner - Corporate Strategy",
  15.     "Strategic Planner - Public Sector",
  16.     "Trend Analyst - Market Trends",
  17.     "Trend Analyst - Social Trends",
  18.     "Risk Analyst - Financial Risk",
  19.     "Risk Analyst - Operational Risk",
  20.     "Scenario Developer - Economic Scenarios",
  21.     "Scenario Developer - Environmental Scenarios",
  22.     "Policy Analyst - Regulatory Policies",
  23.     "Policy Analyst - International Policies",
  24.     "Technologist - AI and Automation",
  25.     "Technologist - Renewable Energy",
  26.     "Economist - Macroeconomics",
  27.     "Economist - Behavioral Economics",
  28.     "Data Scientist - Predictive Modeling",
  29.     "Data Scientist - Big Data Analytics",
  30.     "Environmental Forecaster - Climate Change",
  31.     "Environmental Forecaster - Sustainability",
  32.     "Public Health Forecaster - Epidemiology",
  33.     "Public Health Forecaster - Health Policy",
  34.     "Political Analyst - Geopolitics",
  35.     "Political Analyst - Domestic Politics",
  36.     "Energy Forecasting Expert - Oil and Gas",
  37.     "Energy Forecasting Expert - Renewable Energy",
  38.     "Supply Chain Analyst - Global Supply Chains",
  39.     "Supply Chain Analyst - Local Supply Chains",
  40.     "Innovation Strategist - Product Innovation",
  41.     "Innovation Strategist - Process Innovation",
  42.     "Behavioral Scientist - Consumer Behavior",
  43.     "Behavioral Scientist - Organizational Behavior",
  44.     "Sociotechnical Systems Analyst - Human-Technology Interaction",
  45.     "Sociotechnical Systems Analyst - Systems Integration",
  46.     "Market Analyst - Financial Markets",
  47.     "Market Analyst - Consumer Markets",
  48.     "Global Affairs Expert - International Relations",
  49.     "Global Affairs Expert - Global Economics",
  50.     "Demographer - Population Studies",
  51.     "Demographer - Migration Studies"
  52. ]
Advertisement
Add Comment
Please, Sign In to add comment