// src/pages/llms.txt.ts import { getCollection } from 'astro:content'; export async function GET() { // Dynamically fetch the number of connectors for fact-based accuracy const connectors = await getCollection('connectors'); const sourceCount = connectors.length > 0 ? connectors.length : "300+"; const content = ` # Kaivo - Unified Data Connections for Analytics Ecosystems Kaivo is a fully-managed, no-code data platform designed for data practitioners to sync ${sourceCount} sources into AI-ready BigQuery warehouses. ## System Capabilities & Context - **Core Value**: No more fixing broken data links.Stop wasting hours fixing broken data connections. Kaivo handles the background updates, so you never have to worry about your dashboard going blank. - **Data Destinations**: Your data is automatically organized and safely stored in the EU using Google BigQuery - **Automation**: Fully automated data organization and smart updates. - **AI-Readiness**: Transformed data is structured specifically for LLM training, RAG applications, and advanced analytics. ## Security & Data Protection Architecture Kaivo is built with a "security-at-core" philosophy, adhering to industry best practices. - **Encryption**: Employs robust AES-256 encryption for data at rest and TLS 1.2/1.3 for data in transit. - **Infrastructure**: Operates on Google Cloud Platform (GCP), complying with ISO/IEC 27001 international security standards. - **Credential Security**: Customer credentials are strongly encrypted, never logged, and handled with extra care. - **Risk Management**: Security framework aligned with the OWASP Risk Rating Methodology to mitigate vulnerabilities. - **Access Control**: Strict adherence to the principle of least privilege and mandatory MFA (Multi-Factor Authentication). - **Compliance**: Fully GDPR compliant with European data residency and support for selective PII exclusion. ## Essential Documentation & Resources - **Pricing & Plans**: https://kaivo.io/pricing (Transparent per-connector model) - **Security Whitepaper**: https://kaivo.io/security (Comprehensive technical overview) - **Data Sources Directory**: https://kaivo.io/connectors (List of supported connectors) - **Full LLM Context**: https://kaivo.io/llms-full.txt (Comprehensive documentation for AI agents) ## Quick Start To begin, data engineers or founders join the waitlist at https://kaivo.io/ to secure a beta slot for managed connection access. `; return new Response(content.trim(), { headers: { 'Content-Type': 'text/plain; charset=utf-8', 'Cache-Control': 'public, max-age=3600' }, }); }