Skip to main content

English · 简体中文

PaperBanana-CN scientific figure workbench with a real multimodal fault-diagnosis figure

Launch Studio Install from PyPI Connect through MCP Try in Colab

CI status Package version 2.0.1 Python 3.10 to 3.12 Gradio 6.20.0 MIT License

Turn method descriptions and research data into scientific diagrams and statistical plots.
Keep the PaperBanana workflow; choose your own VLM, image service, interface language, aspect ratio, and resolution.

See it work

PaperBanana-CN Studio progressing from configured inputs through generation to a completed scientific figure

One real Studio run: configured input → live pipeline stages → completed result. No credentials or private endpoints are shown.

Real outputs, not mockups

A PaperBanana-CN showcase containing a methodology diagram, a refined concept figure, and a statistical plot

The methodology diagrams were generated and refined through the configured VLM and image roles. The statistical plot uses PaperBanana's deterministic plotting path; its values are synthetic demonstration data.

What V2 actually adds

PaperBanana-CN V2 adds independent model connections, a bilingual Studio, and exact output sizing

Independent model rails A complete bilingual Studio Exact output control
Give the VLM and image generator different protocols, Base URLs, API keys, model names, and timeouts. Switch the interface between Chinese and English without rewriting prompts, paper text, or labels inside the figure. Choose 10 aspect ratios and 1K / 2K / 4K; unsupported combinations fail before a paid image request.

Studio, CLI, and MCP resolve the same saved connections. API keys remain outside the repository, are never filled back into the browser, and are excluded from run metadata.

Start in 60 seconds

1. Launch the desktop Studio

You need Python 3.10-3.12, uv, and a desktop browser:

uvx paperbanana-cn studio

Open http://127.0.0.1:7860. uvx uses an isolated environment and does not modify Debian or Ubuntu's system Python.

2. Connect the two model roles

Open Settings → VLM connection, enter the protocol, Base URL, API key, exact model name, and timeout, then select Save and use. Repeat under Image connection.

[!TIP] The two roles may use the same relay or completely different services. Editing a saved connection does not activate it, and leaving the key field blank preserves the existing key.

Show the connection manager

PaperBanana-CN connection manager with independent VLM service fields

Supported protocols, credential storage, connection tests, and explicit legacy mode are documented in the connection guide.

3. Generate

Choose Methodology diagram, add the method content and communicative intent, select the aspect ratio and resolution, and run. The result canvas keeps the final figure, real output size, iteration history, and download actions together.

The same task from the CLI:

paperbanana-cn generate \
  --input method.txt \
  --caption "Overview of the proposed architecture" \
  --aspect-ratio 16:9 \
  --resolution 2K \
  --format png

A workbench built around the result

Annotated PaperBanana-CN Studio showing task inputs, size controls, and the result canvas

Area Workflows Required connections
Create Methodology diagram, statistical plot VLM + image / VLM only
Improve Continue a saved run, quality evaluation Determined by the run / VLM only
Automate Full-paper orchestration, batch, parameter sweep Determined by the task
Tools Multi-panel composite, run browser None

Task inputs stay in the left work area. The result canvas is the visual center; completed logs collapse out of the way, while failed runs keep the input and expose the actionable error.

One scientific workflow

Independent VLM and image connections feeding the existing scientific figure pipeline

PaperBanana-CN does not maintain a second scientific pipeline. Retrieval, planning, candidate generation, critique, refinement, deterministic plotting, recovery, batch processing, orchestration, and vector export continue through the upstream PaperBanana workflow.

Use it your way

Entry point Best for Start here
Studio Interactive figure production and connection management paperbanana-cn studio
CLI Reproducible local runs and scripts paperbanana-cn generate --help
MCP Calling 11 figure tools from an MCP client paperbanana-cn mcp
GitHub Action Generating figures inside a repository workflow Action reference
Docker A pinned, isolated runtime ghcr.io/mituan-ai/paperbanana-cn:2.0.1
Colab Trying the package in a hosted notebook Quickstart notebook
MCP client configuration
{
  "mcpServers": {
    "paperbanana-cn": {
      "command": "uvx",
      "args": ["paperbanana-cn", "mcp"]
    }
  }
}

The server reads the same active connections as Studio and CLI. See the MCP guide for all 11 tools and their arguments.

Docker launch
docker run --rm -p 7860:7860 \
  -v paperbanana-cn-config:/home/paperbanana/.config/paperbanana-cn \
  -v paperbanana-cn-data:/home/paperbanana/.local/share/paperbanana-cn \
  -v paperbanana-cn-outputs:/work/outputs \
  ghcr.io/mituan-ai/paperbanana-cn:2.0.1 \
  studio --host 0.0.0.0

Output control without surprises

Aspect ratios

1:1 · 4:3 · 3:2 · 5:4 · 16:9 · 21:9 · 4:5 · 3:4 · 2:3 · 9:16

Resolution tiers

1K · 2K · 4K

Each image adapter declares whether it accepts native tiers, explicit pixels, fixed presets, or a prompt hint. Studio shows the actual request size or native tier. It never silently crops, stretches, or substitutes an unsupported ratio.

Permanent install, source setup, and optional providers

Install the command in an isolated, uv-managed environment:

uv tool install paperbanana-cn
paperbanana-cn studio

Run the current source checkout:

git clone https://github.com/mituan-ai/PaperBanana-CN.git
cd PaperBanana-CN
uv sync
uv run paperbanana-cn studio

The default package includes Studio, MCP, PDF input, OpenAI-compatible services, and Gemini.

Optional adapter Install
AWS Bedrock uv tool install "paperbanana-cn[bedrock]"
Anthropic uv tool install "paperbanana-cn[anthropic]"
LiteLLM uv tool install "paperbanana-cn[litellm]"
All optional providers uv tool install "paperbanana-cn[all-providers]"

For CI, read credentials from environment variables rather than command-line values:

paperbanana-cn connections add \
  --role vlm \
  --name "Primary VLM" \
  --provider openai \
  --base-url "https://vlm.example.com/v1" \
  --model "your-vlm-model" \
  --api-key-env VLM_API_KEY

V1 is preserved. V2 moves forward.

PaperBanana-CN V1 is frozen while V2 is maintained on main

V2 is maintained on main as the paperbanana-cn distribution, paperbanana_cn Python module, and paperbanana-cn command. V1 remains available as a frozen historical release:

Project and community

PaperBanana-CN is maintained by mituan.

PaperBanana-CN is released under the MIT License. Its scientific figure-generation core is based on llmsresearch/paperbanana. This is an unofficial community implementation and is not affiliated with or endorsed by the upstream authors.

Development checks
git clone https://github.com/mituan-ai/PaperBanana-CN.git
cd PaperBanana-CN
uv sync --extra dev
uv run pytest tests/ -q
uv run ruff check paperbanana_cn/ mcp_server/ tests/ scripts/

Never upload API keys, private relay URLs, unpublished papers, private datasets, local connection stores, or generated run directories.

Star history

Star History Chart

Download files

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

Source Distribution

paperbanana_cn-2.0.1.tar.gz (11.8 MB view details)

Uploaded Source

Built Distribution

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

paperbanana_cn-2.0.1-py3-none-any.whl (10.7 MB view details)

Uploaded Python 3

File details

Details for the file paperbanana_cn-2.0.1.tar.gz.

File metadata

  • Download URL: paperbanana_cn-2.0.1.tar.gz
  • Upload date:
  • Size: 11.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for paperbanana_cn-2.0.1.tar.gz
Algorithm Hash digest
SHA256 42f4a5ca117de47d6af67fe00d98d50acf37c5848d6c32411db5a1bdbda608d7
MD5 02f289b40a256b401332e886c7deb905
BLAKE2b-256 4d1c214b8ed6bd9a054a44da2237b42b4fb55392954eac5480c9051d4c7da916

See more details on using hashes here.

Provenance

The following attestation bundles were made for paperbanana_cn-2.0.1.tar.gz:

Publisher: release.yml on mituan-ai/PaperBanana-CN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file paperbanana_cn-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: paperbanana_cn-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for paperbanana_cn-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9f6a4ee9f7e30e56cd12e37a0baf829ef96abde6c282aca34799fb82c5646782
MD5 414c970f0727416be4330cc8ed36a555
BLAKE2b-256 511553cedbab9d0053de46781347313ef2b7d8f0a9b179a46aaa5bbaf4942f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for paperbanana_cn-2.0.1-py3-none-any.whl:

Publisher: release.yml on mituan-ai/PaperBanana-CN

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.0.1 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page