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

# Installation

> Install orxhestra with pip or uv. Add OpenAI, Anthropic, Google, MCP, or A2A provider extras. Python 3.10+ required.

## Basic install

<Tabs>
  <Tab title="pip">
    ```bash theme={null}
    pip install orxhestra
    ```
  </Tab>

  <Tab title="uv">
    ```bash theme={null}
    uv add orxhestra
    ```
  </Tab>
</Tabs>

## With an LLM provider

<Tabs>
  <Tab title="OpenAI">
    ```bash theme={null}
    pip install orxhestra[openai]
    ```
  </Tab>

  <Tab title="Anthropic">
    ```bash theme={null}
    pip install orxhestra[anthropic]
    ```
  </Tab>

  <Tab title="Google Gemini">
    ```bash theme={null}
    pip install orxhestra[google]
    ```
  </Tab>

  <Tab title="MCP">
    ```bash theme={null}
    pip install orxhestra[mcp]
    ```
  </Tab>
</Tabs>

<Info>
  **Python >= 3.10** is required.
</Info>
