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

# Ollama with Reasoning Tools

<Steps>
  <Step title="Add the following code to your Python file">
    ```python ollama_reasoning_tools.py theme={null}
    from agno.agent import Agent
    from agno.models.ollama.chat import Ollama
    from agno.tools.hackernews import HackerNewsTools
    from agno.tools.reasoning import ReasoningTools

    reasoning_agent = Agent(
        model=Ollama(id="llama3.2:latest"),
        tools=[
            ReasoningTools(
                think=True,
                analyze=True,
                add_instructions=True,
                add_few_shot=True,
            ),
            HackerNewsTools(),
        ],
        instructions="Use tables where possible",
        markdown=True,
    )
    reasoning_agent.print_response(
        "Write a report comparing NVDA to TSLA",
        stream=True,
        show_full_reasoning=True,
    )
    ```
  </Step>

  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno ollama ddgs
    ```
  </Step>

  <Step title="Run Agent">
    ```bash theme={null}
    python ollama_reasoning_tools.py
    ```
  </Step>
</Steps>
