There was an error while loading. Please reload this page.
2 parents 229ac8e + 63e7b5e commit 45db0f6Copy full SHA for 45db0f6
1 file changed
paperbanana/__init__.py
@@ -1,5 +1,12 @@
1
"""PaperBanana: Agentic framework for automated academic illustration generation."""
2
3
+import sys
4
+
5
+if sys.platform == "win32":
6
+ for _stream in (sys.stdout, sys.stderr):
7
+ if hasattr(_stream, "reconfigure"):
8
+ _stream.reconfigure(encoding="utf-8", errors="replace")
9
10
__version__ = "0.1.0"
11
12
from paperbanana.core.pipeline import PaperBananaPipeline
0 commit comments