Skip to main content

AI Agent Web Interface with Filesystem and Canvas Visualization

Project description

Cowork Dash

A web interface for AI agent interactions with filesystem workspace, canvas visualization, and real-time streaming.

Cowork Dash - Light Mode Cowork Dash - Dark Mode

Features

  • AI Agent Chat: Real-time streaming with thinking process and task progress
  • File Browser: Interactive file tree with lazy loading
  • Canvas: Visualize DataFrames, Plotly/Matplotlib charts, Mermaid diagrams, images
  • Flexible Configuration: Environment variables, CLI args, or config file

Demo

Organizing files with an AI agent

Cowork Dash Demo Video

Quick Start

Installation

# Install via pip (includes DeepAgents)
pip install cowork-dash

# Or run directly with uvx (no installation needed)
export ANTHROPIC_API_KEY="your_anthropic_api_key"
cowork-dash run

Run

After setting up your agent (optional), run the app. You can also use the default agent by setting ANTHROPIC_API_KEY environment variable.

# Run with defaults (current directory as workspace, no agent)
export ANTHROPIC_API_KEY="your_anthropic_api_key"
cowork-dash run

# Run with workspace
cowork-dash run --workspace ~/my-workspace

# Run with custom agent (optional)
cowork-dash run --agent my_agent.py:agent

# Using uvx (one-off execution)
uvx cowork-dash run --workspace ~/my-workspace --port 8080

Open browser to http://localhost:8050

Configuration

Priority (highest to lowest)

  1. CLI Arguments - --workspace, --port, etc.
  2. Environment Variables - DEEPAGENT_*
  3. Config File - config.py defaults

CLI Options (all optional)

cowork-dash run [OPTIONS]

  --workspace PATH        Workspace directory (default: current directory)
  --agent PATH:OBJECT     Point to your Langgraph agent (default: default agent, manual mode)
  --port PORT            Server port (default: 8050)
  --host HOST            Server host (default: localhost)
  --debug                Enable debug mode
  --title TITLE          App title (default: "Cowork Dash")
  --subtitle TEXT        App subtitle (default: "AI-Powered Workspace")
  --welcome-message TEXT Welcome message shown in chat (supports markdown)

Environment Variables (optional)

export DEEPAGENT_SPEC=my_agent.py:agent         # Set any Langgraph agent
export DEEPAGENT_WORKSPACE_ROOT=/path/to/workspace
export DEEPAGENT_DEBUG=true                     # optional (default: false)
export DEEPAGENT_APP_TITLE="My App"             # optional
export DEEPAGENT_APP_SUBTITLE="Subtitle"        # optional
export DEEPAGENT_WELCOME_MESSAGE="Hello!"       # optional (supports markdown)

cowork-dash run

Python API

from cowork_dash import run_app

# Option 1: Pass agent instance directly (recommended)
from my_agent import MyAgent
agent = MyAgent()
run_app(agent, workspace="~/my-workspace")

# Option 2: Use agent spec
run_app(agent_spec="my_agent.py:agent", workspace="~/my-workspace")

Agent Integration

Agent Specification

Load agents using path:object format:

# Load from Python file
cowork-dash run --agent agent.py:my_agent

# Absolute path
cowork-dash run --agent /path/to/agent.py:agent_instance

Example Agent Setup

# my_agent.py
import os
from deepagents import create_deep_agent
from deepagents.backends.filesystem import FileSystemBackend

backend = FileSystemBackend(root=os.getenv('DEEPAGENT_WORKSPACE_ROOT', './'))
my_agent = create_deep_agent(..., backend=backend)

Then run: cowork-dash run --agent my_agent.py:my_agent

Canvas

The canvas displays agent-created visualizations:

  • DataFrames: HTML tables
  • Charts: Plotly, Matplotlib
  • Images: PNG, JPG, etc.
  • Diagrams: Mermaid (flowcharts, sequence diagrams)
  • Markdown: Text and notes

Content auto-saves to canvas.md and can be exported or cleared.

Development

# Install from source
git clone https://github.com/dkedar7/cowork-dash.git
cd cowork-dash
pip install -e ".[dev]"

# Run tests
pytest

# Build package
python -m build

Requirements

  • Python 3.11+
  • Dash 2.0+
  • dash-mantine-components
  • pandas, plotly, matplotlib, Pillow
  • python-dotenv
  • deepagents

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cowork_dash-0.2.0.tar.gz (949.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cowork_dash-0.2.0-py3-none-any.whl (145.4 kB view details)

Uploaded Python 3

File details

Details for the file cowork_dash-0.2.0.tar.gz.

File metadata

  • Download URL: cowork_dash-0.2.0.tar.gz
  • Upload date:
  • Size: 949.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.8

File hashes

Hashes for cowork_dash-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c59eb877587cfd062b109961c72ccff74fbde7e632622de8ec342bb60492efa1
MD5 bdd959ec1a18be83127c863d585eb4cf
BLAKE2b-256 bebc81bc7ff5992d69b57a3f2f9dd7a200c60294d0043eb0eb3e15c06a57eca4

See more details on using hashes here.

File details

Details for the file cowork_dash-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cowork_dash-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4604d630ff23d2b2b498e0d0699ec3210cbf7f31879ce194b02652ff8eb8d287
MD5 35dfd7bedb74ae9e808ffd1b1fffab17
BLAKE2b-256 33627dd82c23963b6a03e0529716e146bfcd41852f9427165905c93ab12f5733

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page