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

# Installation

# Installation

## Prerequisites

* Python or TypeScript
* An Observee account at [observee.ai](https://observee.ai)
* API keys for your preferred LLM provider

## Install the SDK

<CodeGroup>
  ```bash Python theme={null}
  # Basic installation
  pip install agents-oauth
  ```

  ```bash TypeScript theme={null}
  npm install @observee/auth
  ```
</CodeGroup>

## Get Your API Keys

### Observee API Key

1. Visit [observee.ai](https://observee.ai)
2. Sign up or log in
3. Navigate to API Keys
4. Create a new API key (starts with `obs_`)

## Environment Setup

Create a `.env` file:

```bash theme={null}
# Required
OBSERVEE_API_KEY=obs_your_api_key_here

```

## Next Steps

* [Authentication Guide](/authsdk/authentication)
