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

# Linkup

> Linkup + Nebius Token Factory

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

## **Prerequisites**

1. [Create your NEBIUS API key](https://tokenfactory.nebius.com/project/api-keys) to authorize requests to Nebius Token Factory.
2. [Create your LinkUp API key](https://app.linkup.so/)
3. Install the `linkup` and other packages:

   ```shellscript theme={null}
   pip install linkup-sdk openai
   ```

## Quickstart

```python theme={null}
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](https://docs.linkup.so/pages/integrations/linkup-openai#using-chat-completions-api-alternative)
