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

# Example demonstrating background execution with a Team

> Background execution allows you to start a team run that returns immediately with a PENDING status, while the actual work continues in the background.

Background execution allows you to start a team run that returns immediately with a PENDING status, while the actual work continues in the background. You can then poll for completion or cancel the run.

```python background_execution.py theme={null}
"""
Example demonstrating background execution with a Team.

Background execution allows you to start a team run that returns immediately
with a PENDING status, while the actual work continues in the background.
You can then poll for completion or cancel the run.

Requirements:
- PostgreSQL running (./cookbook/scripts/run_pgvector.sh)
- OPENAI_API_KEY set

Usage:
    .venvs/demo/bin/python cookbook/03_teams/14_run_control/background_execution.py
"""

import asyncio

from agno.agent import Agent
from agno.db.postgres import PostgresDb
from agno.models.openai import OpenAIResponses
from agno.run.base import RunStatus
from agno.team import Team

# ---------------------------------------------------------------------------
# Setup
# ---------------------------------------------------------------------------
db = PostgresDb(
    db_url="postgresql+psycopg://ai:ai@localhost:5532/ai",
    session_table="team_bg_exec_sessions",
)


# ---------------------------------------------------------------------------
# Create and Run Examples
# ---------------------------------------------------------------------------
async def example_team_background_run():
    """Start a team background run and poll until complete."""
    print("=" * 60)
    print("Team Background Run with Polling")
    print("=" * 60)

    researcher = Agent(
        name="Researcher",
        model=OpenAIResponses(id="gpt-5-mini"),
        role="Research topics and provide factual information.",
    )

    writer = Agent(
        name="Writer",
        model=OpenAIResponses(id="gpt-5-mini"),
        role="Write clear and concise summaries.",
    )

    team = Team(
        name="ResearchTeam",
        model=OpenAIResponses(id="gpt-5-mini"),
        members=[researcher, writer],
        instructions=[
            "First, have the researcher gather key facts.",
            "Then, have the writer create a concise summary.",
        ],
        db=db,
    )

    # Start a background run -- returns immediately with PENDING status
    run_output = await team.arun(
        "What are the three laws of thermodynamics? Summarize each in one sentence.",
        background=True,
    )

    print(f"Run ID: {run_output.run_id}")
    print(f"Session ID: {run_output.session_id}")
    print(f"Status: {run_output.status}")
    assert run_output.status == RunStatus.pending, (
        f"Expected PENDING, got {run_output.status}"
    )

    # Poll for completion
    print("\nPolling for completion...")
    for i in range(60):
        await asyncio.sleep(1)
        result = await team.aget_run_output(
            run_id=run_output.run_id,
            session_id=run_output.session_id,
        )
        if result is None:
            print(f"  [{i + 1}s] Run not found in DB yet")
            continue

        print(f"  [{i + 1}s] Status: {result.status}")

        if result.status == RunStatus.completed:
            print(f"\nCompleted! Content:\n{result.content}")
            break
        elif result.status == RunStatus.error:
            print(f"\nFailed! Content: {result.content}")
            break
    else:
        print("\nTimed out waiting for completion")


async def example_cancel_team_background_run():
    """Start a team background run and cancel it."""
    print()
    print("=" * 60)
    print("Cancel a Team Background Run")
    print("=" * 60)

    researcher = Agent(
        name="Researcher",
        model=OpenAIResponses(id="gpt-5-mini"),
        role="Research topics thoroughly.",
    )

    writer = Agent(
        name="Writer",
        model=OpenAIResponses(id="gpt-5-mini"),
        role="Write detailed essays.",
    )

    team = Team(
        name="EssayTeam",
        model=OpenAIResponses(id="gpt-5-mini"),
        members=[researcher, writer],
        instructions=[
            "Have the researcher gather comprehensive information.",
            "Then have the writer create a detailed essay.",
        ],
        db=db,
    )

    # Start a long background run
    run_output = await team.arun(
        "Write a detailed essay about the history of artificial intelligence. "
        "Make it at least 3000 words.",
        background=True,
    )

    print(f"Run ID: {run_output.run_id}")
    print(f"Status: {run_output.status}")

    # Wait a moment, then cancel
    await asyncio.sleep(3)
    print("Cancelling run...")
    cancelled = await team.acancel_run(run_id=run_output.run_id)
    print(f"Cancel result: {cancelled}")

    # Check final state
    await asyncio.sleep(1)
    result = await team.aget_run_output(
        run_id=run_output.run_id,
        session_id=run_output.session_id,
    )
    if result:
        print(f"Final status: {result.status}")


# ---------------------------------------------------------------------------
# Run Demo
# ---------------------------------------------------------------------------
async def main():
    await example_team_background_run()
    await example_cancel_team_background_run()
    print("\nAll examples completed!")


if __name__ == "__main__":
    asyncio.run(main())
```

## Run the Example

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

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno "psycopg[binary]" openai sqlalchemy
    ```
  </Step>

  <Step title="Export your OpenAI API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Snippet file="run-pgvector-step.mdx" />

  <Step title="Run the example">
    Save the code above as `background_execution.py`, then run:

    ```bash theme={null}
    python background_execution.py
    ```
  </Step>
</Steps>

Full source: [cookbook/03\_teams/14\_run\_control/background\_execution.py](https://github.com/agno-agi/agno/blob/main/cookbook/03_teams/14_run_control/background_execution.py)
