import React from 'react';
import Head from '@docusaurus/Head';
import Link from '@docusaurus/Link';
import { useColorMode } from '@docusaurus/theme-common';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import LinkedInIcon from '@mui/icons-material/LinkedIn';
import Avatar from '@mui/material/Avatar';
import Box from '@mui/material/Box';
import Container from '@mui/material/Container';
import Divider from '@mui/material/Divider';
import Grid from '@mui/material/Grid';
import IconButton from '@mui/material/IconButton';
import { createTheme, ThemeProvider } from '@mui/material/styles';
import Typography from '@mui/material/Typography';
import Layout from '@theme/Layout';
import { SITE_CONSTANTS } from '../constants';
const AboutPageContent = () => {
const { colorMode } = useColorMode();
const theme = React.useMemo(
() =>
createTheme({
palette: {
mode: colorMode === 'dark' ? 'dark' : 'light',
},
}),
[colorMode],
);
return (
Securing the Future of AI
Promptfoo helps developers and enterprises build secure, reliable AI applications.
About Us
We are security and engineering practitioners who have scaled generative AI products
to hundreds of millions of users. We're building the tools that we wished we had
when we were on the front lines.
Based in San Francisco, California, Promptfoo is now part of OpenAI. Promptfoo
remains open source, and we continue to build tools for secure, reliable AI
applications.
Our founders
{[
{
name: 'Ian Webster',
title: 'CEO & Co-founder',
image: '/img/team/ian.jpeg',
bio: 'Ian previously led LLM engineering and developer platform teams at Discord, scaling AI products to 200M users while maintaining rigorous safety, security, and policy standards.',
linkedin: 'http://linkedin.com/in/ianww',
},
{
name: "Michael D'Angelo",
title: 'CTO & Co-founder',
image: '/img/team/michael.jpeg',
bio: 'Michael brings extensive experience in AI and engineering leadership. As the former VP of Engineering and Head of AI at Smile Identity, he has a track record of scaling ML solutions to serve over 100 million people across hundreds of enterprises.',
linkedin: 'https://www.linkedin.com/in/michaelldangelo/',
},
].map((leader) => (
{leader.name}
{leader.linkedin && (
)}
{leader.title}
))}
Early Supporters
We're grateful to the investors and operators who backed Promptfoo early and helped us
build open-source, application-focused AI security.
{[
{
name: 'Ganesh Bell',
image: '/img/team/ganesh.jpeg',
description: 'Managing Director, Insight Partners',
},
{
name: 'Zane Lackey',
image: '/img/team/zane.jpeg',
description: 'General Partner, Andreessen Horowitz\nFounder, Signal Sciences',
},
{
name: 'Joel de la Garza',
image: '/img/team/joel.jpeg',
description: 'Investment Partner, Andreessen Horowitz\nCISO, Box',
},
{
name: 'Tobi Lutke',
image: '/img/team/tobi.jpeg',
description: 'CEO, Shopify',
},
{
name: 'Stanislav Vishnevskiy',
image: '/img/team/stan.jpeg',
description: 'CTO, Discord',
},
{
name: 'Frederic Kerrest',
image: '/img/team/frederic.jpeg',
description: 'Vice-Chairman & Co-Founder, Okta',
},
{
name: 'Adam Ely',
image: '/img/team/adam.jpeg',
description: 'EVP, Head of Digital Products, Fidelity\nCISO, Fidelity',
},
].map((investor) => (
{investor.name}
{investor.description}
))}
An Incredible Open Source Community
Promptfoo is proud to be supported by a vibrant community of over{' '}
{SITE_CONSTANTS.CONTRIBUTOR_COUNT} open source contributors.
Ready to Secure Your AI Applications?
Join leading enterprises who trust Promptfoo to fortify their AI applications.
Get in Touch
);
};
const AboutPage = () => {
const { siteConfig } = useDocusaurusContext();
const siteUrl = siteConfig.url;
return (
);
};
export default AboutPage;