Skip to main content
Linkup is a web search engine designed for AI applications. It connects AI systems to the internet through an API that delivers grounding data, enriching outputs and improving precision, accuracy, and factual reliability.

Prerequisites

Before starting, ensure you have:

Installation and setup

Clone the repository

git clone https://github.com/sambanova/integrations.git
cd integrations/linkup

Create a virtual environment

python -m venv .venv
source .venv/bin/activate

Install dependencies

Install from the requirements file:
pip install -r requirements.txt
Or install packages directly:
pip install linkup-sdk==0.9.0
pip install sambanova==1.2.0

Set environment variables

Create a .env file in the project directory with your API keys:
LINKUP_API_KEY="your-linkup-api-key"
SAMBANOVA_API_KEY="your-sambanova-api-key"
Or export them directly:
export LINKUP_API_KEY="your-linkup-api-key"
export SAMBANOVA_API_KEY="your-sambanova-api-key"

Run the example

Open and run the example notebook in the Linkup integration example on GitHub.

Linkup documentation

For more information about Linkup, see the official Linkup documentation.