llms.txt Content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link
rel="apple-touch-icon"
href="/lovable-uploads/4670d3e5-30f4-4002-a8ef-e739a6e72ba4.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Add timestamp to prevent caching -->
<meta name="timestamp" content="<?=time()?>" />
<title>OpenPipe | RL For Agents</title>
<!-- Preload critical CSS -->
<!-- Preload fonts -->
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap"
as="style"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap"
/>
<!-- Inline critical CSS for loading state -->
<style>
/* Critical CSS to prevent FOUC */
body,
html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-family: "JetBrains Mono", monospace;
}
/* Loading overlay - now just white background */
#loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.3s ease-out;
}
/* Hide content until ready */
#root {
opacity: 0;
transition: opacity 0.3s ease-out;
}
/* Ready state */
.content-loaded #root {
opacity: 1;
}
.conte