Skip to main content
Linkup is a web search engine for AI apps. they connect your AI application to the internet

Prerequisites

  1. Create your NEBIUS API key to authorize requests to Nebius Token Factory.
  2. Create your LinkUp API key
  3. Install the linkup and other packages:
    pip install linkup-sdk openai
    

Quickstart

from openai import OpenAI
from linkup import LinkupClient

# Use OpenAI API to Nebius Token Factory
openai_client = OpenAI(api_key="your_openai_api_key",
                       base_url="https://api.tokenfactory.nebius.com/v1/")
linkup_client = LinkupClient(api_key="your_linkup_api_key")
See here for a complete example