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

# Browser Use

> Browser Use ajanlarını TokenLab modelleri ile çalıştırın

## Genel Bakış

Browser Use, OpenAI uyumlu sohbet modeli sarmalayıcısı olan `ChatOpenAILike` aracılığıyla TokenLab'i çağırabilir.

<Note>
  **Tür**: Tarayıcı otomasyonu ajan çerçevesi

  **Birincil Yol**: OpenAI uyumlu Chat Completions

  **Destek Güveni**: Desteklenen OpenAI uyumlu yol
</Note>

## Ortam

```bash theme={null}
export TOKENLAB_API_KEY="sk-your-tokenlab-key"
```

## Örnek

```python theme={null}
import os

from browser_use import Agent
from browser_use.llm.openai.like import ChatOpenAILike

llm = ChatOpenAILike(
    model="claude-sonnet-5",
    api_key=os.environ["TOKENLAB_API_KEY"],
    base_url="https://api.tokenlab.sh/v1",
)

agent = Agent(
    task="Compare the top search results for TokenLab integrations",
    llm=llm,
)
```

## Uç Nokta Notları

Bu sayfayı, OpenAI uyumlu bir istemci aracılığıyla Chat Completions çağıran Browser Use iş akışları için kullanın. İş akışınız TokenLab yerel yanıtlarına, Anthropic Messages veya Gemini uç noktalarına ihtiyaç duyuyorsa, Browser Use içerisinde bu protokolü doğrudan konuşan bir istemci yolu kullanın.
