Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion paperbanana/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
if hasattr(_stream, "reconfigure"):
_stream.reconfigure(encoding="utf-8", errors="replace")

__version__ = "0.2.0"
__version__ = "0.3.0"

from paperbanana.core.pipeline import PaperBananaPipeline
from paperbanana.core.types import DiagramType, GenerationInput, GenerationOutput
Expand Down
3 changes: 2 additions & 1 deletion paperbanana/providers/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"ATLASCLOUD_API_KEY": (
"ATLASCLOUD_API_KEY not found.\n\n"
"To fix this:\n"
" 1. Get an API key at: https://www.atlascloud.ai/console/api-keys\n"
" 1. Get an API key at: "
"https://www.atlascloud.ai/console/api-keys?utm_source=github&utm_medium=link&utm_campaign=paperbanana\n"
" 2. Set the environment variable:\n\n"
" export ATLASCLOUD_API_KEY=your-key-here"
),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "paperbanana"
version = "0.2.0"
version = "0.3.0"
description = "Agentic framework for automated academic illustration generation"
readme = "README.md"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"name": "io.github.llmsresearch/paperbanana",
"title": "PaperBanana",
"description": "Generate academic diagrams and statistical plots from text using multi-agent AI.",
"version": "0.2.0",
"version": "0.3.0",
"packages": [
{
"registryType": "pypi",
"identifier": "paperbanana",
"version": "0.2.0",
"version": "0.3.0",
"transport": {
"type": "stdio"
}
Expand Down
Loading