> ## Documentation Index
> Fetch the complete documentation index at: https://braintrust.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Go SDK integrations

> AI providers and tools the Braintrust Go SDK integrates with.

export const SDKIntegrationsGrid = ({integrations}) => {
  const [searchTerm, setSearchTerm] = React.useState("");
  const searchInputRef = React.useRef(null);
  React.useEffect(() => {
    const handleKeyDown = e => {
      if ((e.metaKey || e.ctrlKey) && e.key === "f") {
        e.preventDefault();
        e.stopPropagation();
        searchInputRef.current?.focus();
        searchInputRef.current?.select();
      } else if (e.key === "Escape" && document.activeElement === searchInputRef.current) {
        setSearchTerm("");
        searchInputRef.current?.blur();
      }
    };
    window.addEventListener("keydown", handleKeyDown, true);
    return () => window.removeEventListener("keydown", handleKeyDown, true);
  }, []);
  const filtered = integrations.filter(i => !searchTerm || i.title.toLowerCase().includes(searchTerm.toLowerCase())).sort((a, b) => a.title.localeCompare(b.title));
  return <>
      <div style={{
    marginBottom: "1.5rem"
  }}>
        <div style={{
    position: "relative",
    width: "100%"
  }}>
          <div style={{
    position: "absolute",
    left: "0.875rem",
    top: "50%",
    transform: "translateY(-50%)",
    pointerEvents: "none",
    display: "flex",
    alignItems: "center",
    zIndex: 1
  }}>
            <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="integrations-search-icon">
              <circle cx="11" cy="11" r="8"></circle>
              <path d="m21 21-4.3-4.3"></path>
            </svg>
          </div>
          <input ref={searchInputRef} type="text" placeholder="Search integrations..." value={searchTerm} onChange={e => setSearchTerm(e.target.value)} className="integrations-search-input" />
          <div className="integrations-search-kbd" style={{
    position: "absolute",
    right: "0.75rem",
    top: "50%",
    transform: "translateY(-50%)",
    pointerEvents: "none",
    fontSize: "0.75rem",
    fontWeight: "600"
  }}>
            {typeof navigator !== "undefined" && "⌘F"}
          </div>
        </div>
      </div>
      <CardGroup cols={3}>
        {filtered.map(integration => <Card key={integration.href} horizontal title={integration.title} href={integration.href} icon={integration.icon} arrow />)}
      </CardGroup>
    </>;
};

<SDKIntegrationsGrid
  integrations={[
{
  title: "Anthropic",
  href: "/integrations/ai-providers/anthropic",
  icon: "https://img.logo.dev/anthropic.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "AWS Bedrock",
  href: "/integrations/ai-providers/bedrock",
  icon: "https://img.logo.dev/aws.amazon.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "CloudWeGo Eino",
  href: "/integrations/sdk-integrations/cloudwego-eino",
  icon: "https://img.logo.dev/cloudwego.io?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "Firebase Genkit",
  href: "/integrations/sdk-integrations/firebase-genkit",
  icon: "https://img.logo.dev/firebase.google.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "Google ADK",
  href: "/integrations/agent-frameworks/google",
  icon: "https://img.logo.dev/google.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "Google GenAI",
  href: "/integrations/ai-providers/gemini",
  icon: "https://img.logo.dev/google.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "LangChainGo",
  href: "/integrations/sdk-integrations/langchain",
  icon: "https://img.logo.dev/langchain.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
{
  title: "OpenAI",
  href: "/integrations/ai-providers/openai",
  icon: "https://img.logo.dev/openai.com?token=pk_BdcHD9e5SCW3j1rnJkNyMQ",
},
]}
/>
