Live example

Try out this agent setup in the Latitude Playground.

Objective

We want to create an AI-powered tool that can analyze pre-seed startups based on pitch decks and other documents. The tool will extract key information, conduct research, and generate a structured report in Notion. Let’s put an example.

Input email

Let’s imagine is 2008 and Bryan Chesky sends an email to a fund with a pitch deck for a startup called Airbnb. Our tech incubator is super successful and we don’t want to miss any good candidates. So we create an agentic tool in Latitude that can receive emails like this and analyze the startups that are being pitched.

Analysis of the email

The final result is a structured report stored in a Notion database.

The setup

This project use different parts from Latitude let’s start by listing them:

Notion integration

Most of the elements used in this project are easy to understand following Latitude documentation, but the Notion integration is a bit more complex. Let’s do a quick overview of how to set it up.

1

You need to create a Notion workspace
2

Go to Notion Integrations and create new integration for Latitude. You will need an API to setup the Notion’s MCP server on Latitude.

3

Once you have the integration we need do do 2 more things.

  1. copy the Internal Integration Token for configuring the MPC server on Latitude.
  2. Give access to this integration to one of our pages in the workspace (yellow box in the image above).

The prompts

The tool is an AI agent divided in sub-agents, each responsible for a specific task in the analysis process. The main agent coordinates the workflow and ensures that all tasks are completed efficiently.

Latitude is flexible enough to allow you to structure workflows quite complex in a way that makes sense for you. In this case we decided to create an agents folder with all the processing work and a publish agent that is responsible for the formatting and publishing of the final report in Notion.

---
provider: OpenAI
model: gpt-4.1
temperature: 0
type: agent
maxSteps: 40
agents:
  - agents/interpreter
  - agents/team_finder
  - agents/identity_checker
  - agents/metrics_hunter
  - agents/investigator
  - agents/competition_research
  - agents/evaluation_expert
  - agents/market_mapper
  - agents/tech_stacker
  - agents/business_model_analyzer
  - publish

Let’s do a breakdown of all the prompts (agents) and their roles.

If you want to really play with this example in live you can copy it to your Latitude account here