FutureSearch Logofuturesearch
  • Solutions
  • Pricing
  • Research
  • Docs
  • Evals
  • Blog
  • Company
  • Try it for free
FutureSearch Logo

General inquiry? You can reach us at hello@futuresearch.ai.

Company

Team & CareersPressPrivacy PolicyTerms of Service

Developers

SDK DocsAPI ReferenceCase StudiesGitHubSupport

Integrations

Claude CodeCursorChatGPT CodexClaude.ai

Follow Us

X (Twitter)@dschwarz26LinkedIn
FutureSearchdocs
Your research team
Installation
  • All install methods
  • Claude.ai
  • Claude Code
  • Web App
  • Python SDK
  • Skill
Reference
  • API Key
  • classify
  • dedupe
  • forecast
  • merge
  • rank
  • agent_map
  • MCP Server
  • Progress Monitoring
  • Chaining Operations
Guides
  • LLM-Powered Data Labeling
  • Add a Column via Web Research
  • Classify and Label Rows
  • Deduplicate Training Data
  • Error Handling
  • Filter a Dataset Intelligently
  • Find Profitable Prediction Market Trades
  • Forecast Outcomes for a List of Entities
  • Value a Private Company
  • Join Tables Without Shared Keys
  • Rank Data by External Metrics
  • Resolve Duplicate Entities
  • Scale Deduplication to 20K Rows
  • Turn Claude into an Accurate Forecaster
Case Studies
  • Deduplicate Contact Lists
  • Deduplicate CRM Records
  • Enrich Contacts with Company Data
  • Forecast a Sum-of-the-Parts SpaceX IPO Valuation
  • Forecast Anthropic and OpenAI IPO Valuations
  • Forecast Founder Seed Valuations for AI Researchers
  • Forecast When Anthropic and OpenAI Will IPO
  • Fuzzy Match Across Tables
  • Link Records Across Medical Datasets
  • LLM Cost vs. Accuracy
  • Merge Costs and Speed
  • Merge Thousands of Records
  • Multi-Stage Lead Qualification
  • Research and Rank Web Data
  • Run 10,000 LLM Web Research Agents
  • Score Cold Leads via Web Research
  • Score Leads from Fragmented Data
  • Screen 10,000 Rows
  • Screen Job Listings
  • Screen Stocks by Economic Sensitivity
  • Screen Stocks by Investment Thesis
FutureSearchby futuresearch
by futuresearch

Forecast Founder Seed Valuations for AI Researchers

Forecast what 116 AI researchers could raise at seed if they left their labs to found AGI startups. The forecaster searches each researcher's publication record, lab affiliation, public profile, and the recent Sutskever/Murati/LeCun comparables, then returns a calibrated p10 through p90 valuation distribution per row.

MetricValue
Rows processed116
Forecast typenumeric
Total cost$9
Time~9 minutes

Add FutureSearch to Claude Code if you haven't already:

claude mcp add futuresearch --scope project --transport http https://mcp.futuresearch.ai/mcp

Then ask Claude:

Find a list of prominent AI researchers who haven't yet started AGI startups,
then forecast the seed valuation each would command if they did. Exclude anyone
who has already founded an AGI lab (Sutskever, Murati, LeCun, Hassabis, the
Anthropic cofounders, etc.).

Claude first dispatches a research agent to compile the list, then runs futuresearch_forecast over the resulting rows:

Tool: futuresearch_agent
├─ task: "Compile a list of ~120 prominent AI researchers active at frontier
│         labs (OpenAI, Anthropic, Google DeepMind, Meta FAIR, Mistral, xAI,
│         academic labs). Exclude founders of existing AGI startups."
├─ return_table: true
└─ response_schema: {name, affiliation, known_for}

→ Returned 116 researchers.

Tool: futuresearch_forecast
├─ data: [{"name": "Noam Brown", "question": "If Noam Brown founded an
│          AGI-related startup today, what would its seed-round valuation
│          be in billions USD?", ...}, ... 115 more]
├─ forecast_type: "numeric"
├─ output_field: "valuation"
├─ units: "billions USD"
└─ context: "Assume an AGI-related startup announced today with a completed
            seed round; the founder recruits prominent researchers but is the
            most prominent person."

→ Submitted: 116 rows for forecasting.
  Session: https://futuresearch.ai/sessions/2f1b8a47-9c3d-4e6f-b8a2-7d1e5c0a3f48
  Task ID: 2f1b...

Tool: futuresearch_progress
├─ task_id: "2f1b..."
→ Running: 0/116 complete, 116 running (30s elapsed)

...

Tool: futuresearch_progress
→ Completed: 116/116 (0 failed) in 540s.

Tool: futuresearch_results
├─ task_id: "2f1b..."
├─ output_path: "/Users/you/researcher_valuations.csv"
→ Saved 116 rows to /Users/you/researcher_valuations.csv

View the session. See the companion guide for the general pattern.

Add the FutureSearch connector if you haven't already. Then ask Claude:

Find a list of prominent AI researchers who haven't yet started AGI startups, then forecast the seed valuation each would command if they did. Assume an AGI-related startup announced today with a completed seed round, where the founder recruits other prominent researchers but is the most prominent person. Exclude existing AGI-startup founders (Sutskever, Murati, LeCun, Hassabis, the Anthropic cofounders).

Results take about 9 minutes.

Go to futuresearch.ai/app and enter:

Find a list of prominent AI researchers who haven't yet started AGI startups, then forecast the seed valuation each would command if they did. Assume an AGI-related startup announced today with a completed seed round, where the founder recruits other prominent researchers but is the most prominent person. Exclude existing AGI-startup founders (Sutskever, Murati, LeCun, Hassabis, the Anthropic cofounders).

Numeric forecasting returns valuation_p10 through valuation_p90 as floats, plus a units column and a rationale explaining the research behind each row.

pip install futuresearch
export FUTURESEARCH_API_KEY=your_key_here  # Get one at futuresearch.ai/app/api-key
import asyncio
import pandas as pd
from futuresearch import create_session
from futuresearch.ops import forecast

researchers_df = pd.DataFrame([
    {
        "name": "Noam Brown",
        "question": "If Noam Brown founded an AGI-related startup today, what would its seed-round valuation be in billions USD?",
        "background": "Research scientist at OpenAI. Best known for poker AIs (Libratus, Pluribus) and OpenAI's o1 reasoning model.",
    },
    {
        "name": "Geoffrey Hinton",
        "question": "If Geoffrey Hinton founded an AGI-related startup today, what would its seed-round valuation be in billions USD?",
        "background": "Turing Award winner, 'godfather of deep learning'. Currently focused on AI safety advocacy after leaving Google in 2023.",
    },
    {
        "name": "Alec Radford",
        "question": "If Alec Radford founded an AGI-related startup today, what would its seed-round valuation be in billions USD?",
        "background": "Lead author on GPT-1, GPT-2, CLIP, Whisper, and DALL-E. Has advised Mira Murati's Thinking Machines.",
    },
    {
        "name": "Tri Dao",
        "question": "If Tri Dao founded an AGI-related startup today, what would its seed-round valuation be in billions USD?",
        "background": "Created FlashAttention, co-created Mamba. Princeton CS, Together AI. Focus on compute efficiency.",
    },
    {
        "name": "John Jumper",
        "question": "If John Jumper founded an AGI-related startup today, what would its seed-round valuation be in billions USD?",
        "background": "Lead scientist at DeepMind behind AlphaFold2. Shared the 2024 Nobel Prize in Chemistry.",
    },
    # ... 111 more researchers
])

async def main():
    async with create_session(name="AI Researcher Seed Valuations") as session:
        result = await forecast(
            session=session,
            input=researchers_df,
            forecast_type="numeric",
            output_field="valuation",
            units="billions USD",
            context=(
                "Assume an AGI-related startup announced today with a completed "
                "seed round; the founder recruits prominent researchers but is "
                "the most prominent person."
            ),
        )
        return result.data

results = asyncio.run(main())
print(results[["name", "valuation_p10", "valuation_p50", "valuation_p90", "units"]])

Results

The top 8 researchers by median forecasted seed valuation:

Researcherp10p50 (median)p90
Noam Brown$1.4B$6.7B$13.8B
Geoffrey Hintonn/a$5.8Bn/a
Alec Radford$1.0B$4.3B$11.0B
John Jumpern/a$2.7Bn/a
Yoshua Bengion/a$2.3Bn/a
Tri Daon/a$1.8Bn/a
Andrew Yao$0.28B$1.4B$5.3B
Been Kimn/a$0.93Bn/a

The wide ranges reflect real uncertainty about each researcher's commercial appeal. Andrew Yao spans $280M to $5.3B almost entirely because of US-China geopolitics: the low end assumes capital decoupling severely limits his investor base, while the high end assumes sovereign-wealth backing as a Chinese "national champion" in AI. Alec Radford's $1B to $11B range is the gap between a deliberately small research lab and an OpenAI-mafia mega-seed in the Sutskever/Murati tier.

The forecast ran at the default LOW effort level. With 116 rows, well above the threshold where LOW becomes the right cost/quality tradeoff, the per-row cost works out to roughly $0.08.

Going deeper

  • Long-form analysis: Which AI researchers have the most valuable skills?
  • Companion guide: Forecast outcomes for a list of entities