← Back to Issue

Mapping out OpenAI's startup empire

From TechCrunch · subscribed via aiste.ulozaite@gmail.com · original ↗

OpenAI raised a big startup fund from outside investors — $175 million in its main fund and another $114 million in special purpose vehicles. Since the OpenAI Startup Fund was launched in 2021, it’s backed more than a dozen startups (that we know of).


function bit_set(num, bit){ return num 1 « bit; } function isWebDriver() { try { return typeof navigator.webdriver != “undefined” && navigator.webdriver; } catch(e) { return false; } } function hasAccelerometerPermission() { try { return typeof DeviceMotionEvent !== ‘undefined’ && typeof DeviceMotionEvent.requestPermission === ‘function’; } catch(e) { return false; } } function isHiDPI() { try { if (typeof window.matchMedia !== ‘function’) { return false; } var query = ‘(-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi)’; var mql = window.matchMedia(query); if (mql.matches === undefined) { return false; } return mql.matches; } catch(e) { return false; } } function arePluginsConsistent() { try { if (typeof navigator.plugins == “undefined”   navigator.plugins === undefined) { return false; } var plugins = navigator.plugins; var isConsistent = Object.getPrototypeOf(plugins) === PluginArray.prototype; for (var i = 0; i < plugins.length; i++) { isConsistent &&= Object.getPrototypeOf(plugins[i]) === Plugin.prototype; } return isConsistent; } catch(e) { return false; } } function isBigEndian() { try { var buf = new ArrayBuffer(4); new Uint32Array(buf)[0] = 0xaa000000; return new Uint8Array(buf)[0] === 0xaa; } catch(e) { return false; } } function getBooleanAttributes() { var flags = 0; if (isWebDriver()) { flags = bit_set(flags, 0); } if (hasAccelerometerPermission()) { flags = bit_set(flags, 1); } if (isHiDPI()) { flags = bit_set(flags, 2); } if (arePluginsConsistent()) { flags = bit_set(flags, 3); } if (isBigEndian()) { flags = bit_set(flags, 4); } return flags; } function getPluginsLength() { try { if (navigator.plugins === undefined) { return -1; } return navigator.plugins.length; } catch(e) { return -1; } } function getHardwareConcurrency() { try { var concurrency = navigator.hardwareConcurrency; if (typeof concurrency === ‘string’) { var concurrencyInt = parseInt(concurrency); return isNaN(concurrencyInt) ? 1 : concurrencyInt; } return concurrency } catch(e) { return -1; } } function getLanguages() { try { return Object.assign([], navigator.languages); } catch(e) { return []; } } function getPlatform() { try { return navigator.platform; } catch(e) { return “”; } } function getScreen() { try { return [screen.width, screen.height] } catch(e) { return []; } } var PRE_JS = “-2”; var ERR_JS = “-1”; var NO_JS = “0”; var SUCCESS_JS = “1”; function getTargetURLWithState(state) { // default PRE_JS var targetURL = “https://email.techcrunch.com/events/public/v1/encoded/track/tc/ZX+113/d5b44W04/VWQ-Yf8ghPpNW1P233N3jKY_LW8yJSQm5sGZ93MwF3TT3hCZPW8wLKSR6lZ3n9W8pf2z810–W9W7SPFf53XzXdxW7qDVjT3MpRbjW6Gt7DD3LHYMvW1yNzp861Xs9-W1w9PY66H_4H3W12wGCY1CGPyJW69dst68m6RtLW19FgFH2CYr0dW1KFNBb83BCTcVHk2fK50Bj-LW40HqDZ3yzgQyW5z0ZG25Y_rP0W5v-6zW5lv2KQVjm-gX5cVfrzW9cVTPX1dDHTyW4yjks759MdlzW7pYNG08MpgvZW5S7sgr2FDS5GW1M1Tgz4TFW5rW8WS86868l9BGW2nMHks4XNYvRW4QbfJY1Y9J4VW6v9Z-c1Syzy0W75GTbW6KTfYdW6L5sRg1qJDzSW6pBnQh8TjzT5W6D1tLs4XXDtNf952bhg04?_ud=e82d6569-9cd1-44e2-87e2-18d6e06cc19b&_jss=-2”; return targetURL.substring(0, targetURL.length - 2) + state; } var targetURL; try { targetURL = getTargetURLWithState(SUCCESS_JS) + “&_fl=” + getBooleanAttributes() + “&_pl=” + getPluginsLength() + “&_hc=” + getHardwareConcurrency() + “&_lg=” + getLanguages() + “&_plt=” + getPlatform() + “&_scr=” + getScreen(); } catch(e) { targetURL = getTargetURLWithState(ERR_JS); } if (/Android/.test(window.navigator.userAgent)) { document.location = targetURL; } else { window.location.replace(targetURL); } body { font-family: Helvetica, Arial, sans-serif; font-weight: 400; font-size: 14px; font-size: 0.875rem; color: #33475b; line-height: 1.5rem; margin-top: 50px; } h4 { font-family: Helvetica, Arial, sans-serif; font-weight: 700; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-shadow: 0 0 1px transparent; margin-bottom: 1.25rem; margin-top: 0; display: block; font-size: 1.25rem ; line-height: normal; text-transform: none; } a { font-family: Helvetica, Arial, sans-serif; font-weight: 500; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-shadow: 0 0 1px transparent; transition: all 150ms ease-out; color: #0091ae; text-decoration: none; } a:hover { color: #007a8c; text-decoration: underline; } a:active { color: #7fd1de; } a.private-link–underlined { text-decoration: underline; } a.private-link–hover { font-family: Helvetica, Arial, sans-serif; font-weight: 500; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-shadow: 0 0 1px transparent; transition: all 150ms ease-out; color: #007a8c; text-decoration: none; text-decoration: underline; } a.private-link–hover:hover { color: #007a8c; text-decoration: underline; } a.private-link–hover:active { color: #7fd1de; } .private-link { font-family: Helvetica, Arial, sans-serif; font-weight: 500; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-shadow: 0 0 1px transparent; transition: all 150ms ease-out; color: #0091ae; text-decoration: none; cursor: pointer; } .private-link:hover { color: #007a8c; text-decoration: underline; } .private-link:active { color: #7fd1de; } @keyframes loading{0%{transform:translateY(0)}25%{background-color:#cbd6e2;transform:translateY(.25em)}50%{transform:translateY(0)}75%{background-color:#cbd6e2;transform:translateY(-.25em)}to{transform:translateY(0)}}@-webkit-keyframes loading{0%{transform:translateY(0)}25%{background-color:#cbd6e2;transform:translateY(.25em)}50%{transform:translateY(0)}75%{background-color:#cbd6e2;transform:translateY(-.25em)}to{transform:translateY(0)}}.uiLoading{-webkit-align-items:center;align-items:center;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;height:1.25em;width:4.5em}.uiLoading-grow{height:100%;width:100%}.uiLoadingDot{-webkit-animation:loading 1s infinite linear;animation:loading 1s infinite linear;background-color:currentColor;border-radius:50%;color:#7c98b6;height:1em;width:1em}.uiLoadingDot.dot-1{-webkit-animation-delay:0s;animation-delay:0s;margin-right:.75em}.uiLoadingDot.dot-2{-webkit-animation-delay:-.66s;animation-delay:-.66s;margin-right:.75em}.uiLoadingDot.dot-3{-webkit-animation-delay:-.33s;animation-delay:-.33s}.uiLoadingDot.loading-blue{color:#00a4bd}.uiLoadingDot.loading-orange{color:#e66e50}

You’re being redirected

If you’re not redirected in a few seconds, click here