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.1.8.tar.gz (926.4 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.1.8-py3-none-any.whl (125.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for cowork_dash-0.1.8.tar.gz
Algorithm Hash digest
SHA256 0d428fb4b95fb352ca69e5c8c7d7ae94219b3b3da04fcfac5bcbcc4d87a61646
MD5 4ac6dec92fbff35a9c89e5054a802807
BLAKE2b-256 632af944483b82689891fee386a24a79b65a3330d66d99036d681faf01ae4649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cowork_dash-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 c0652ff6b7eef11511039c3bc50f164c539159bb27eed7cb3fa3d2926010b8fa
MD5 fa3ff0550701f6764c38fda56c0acf47
BLAKE2b-256 dddeb9947cce6272a8f99436ba98fb7076e254b10a04a5ef1bae689decad0550

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