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

# Overview

> Configure your scripts using the `config.py` file

<CardGroup>
  <Card title="Processing" icon="file-lines" href="/config/processing">
    Configure how documents are processed
  </Card>

  <Card title="AI Models" icon="robot" href="/config/ai-models/overview">
    The three AI models used in the project
  </Card>

  <Card title="Diagnostic" icon="stethoscope" href="/config/diagnostic">
    Settings for diagnosing and troubleshooting issues
  </Card>
</CardGroup>

<CodeGroup>
  <CodeGroupItem label="uv" language="bash">
    # activate virtual environment, this isolates the project from the rest of your system

    source .venv/bin/activate

    # install Python dependencies

    uv init

    # install Python dependencies

    uv sync
  </CodeGroupItem>

  <CodeGroupItem label="pip" language="bash">
    python -m venv .venv
    source .venv/bin/activate
    pip install -r requirements.txt
  </CodeGroupItem>
</CodeGroup>
