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.1.tar.gz (954.1 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.1-py3-none-any.whl (148.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for cowork_dash-0.2.1.tar.gz
Algorithm Hash digest
SHA256 a1ae05fe5cce82a7c098dfd9e1e4454b3bd3f62e3c144a496c988db531aa05e1
MD5 d9f45111f32fd14ea3ff599375cd168e
BLAKE2b-256 85e634d105300fc46bb1a9e7a6e52c0103a206c002f065263ee839f2b7591066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cowork_dash-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ac10ee886002ed67b7ebb8e8a23423d995fedd6f14131878d415f5f111ad6732
MD5 5de27a7ad884a99347de6759f692eaef
BLAKE2b-256 d50fa0aa48e09e2a07121ffc8283a4643b4c0d0b3698beb89dc4a630226ddb92

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