bluefield
AI chat

Ground your chatbot in live web data

Connect any chat interface to real time web content. Your users get answers drawn from the live web rather than stale training data.

Fetch live page content before LLM inference

import { BlueFieldsClient } from '@bluefields/sdk';

const bf = new BlueFieldsClient({ apiKey: process.env.BF_KEY });

async function getPageContext(url: string) {
  const { markdown } = await bf.scrape({
    url,
    formats: ['markdown'],
  });
  return markdown; // pass directly to your LLM as context
}

What you need to get started

A Bluefield API keyThe TypeScript SDK or curlA free account