Generate standardized figure legends for scientific charts and graphs. Trigger when user uploads/requesting legend for research figures, academic papers, or data charts. Supports bar charts, line graphs, scatter plots, box plots, heatmaps, and microscopy images. This tool generates text legends only, not visualizations.
Generate publication-quality figure legends for scientific research charts and images.
| Chart Type | Description |
|---|---|
| Bar Chart | Compare values across categories |
| Line Graph | Show trends over time or continuous data |
| Scatter Plot | Display relationships between variables |
| Box Plot | Show distribution and outliers |
| Heatmap | Display matrix data intensity |
| Microscopy | Fluorescence/confocal images |
| Flow Cytometry | FACS plots and histograms |
| Western Blot | Protein expression bands |
python scripts/main.py --input <image_path> --type <chart_type> [--output <output_path>]
| Parameter | Required | Description |
|---|---|---|
--input | Yes | Path to chart image |
--type | Yes | Chart type (bar/line/scatter/box/heatmap/microscopy/flow/western) |
--output | No | Output path for legend text (default: stdout) |
--format | No | Output format (text/markdown/latex), default: markdown |
--language | No | Language (en/zh), default: en |
# Generate legend for bar chart
python scripts/main.py --input figure1.png --type bar
# Save to file
python scripts/main.py --input plot.jpg --type line --output legend.md
# Chinese output
python scripts/main.py --image.png --type scatter --language zh
Generated legends follow academic standards:
references/legend_templates.md - Templates by chart typereferences/academic_style_guide.md - Formatting guidelines| Risk Indicator | Assessment | Level |
|---|---|---|
| Code Execution | Python scripts with tools | High |
| Network Access | External API calls | High |
| File System Access | Read/write data | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Data handled securely | Medium |
# Python dependencies
pip install -r requirements.txt