Scientific Writer is a deep research and writing tool that combines AI-driven deep research with well-formatted written outputs. This API lets you programmatically generate publication-ready documents backed by real-time literature search and verified citations.
Complete reference for the Scientific Writer programmatic API. For a quick start, see the README. This page contains full details, examples, and best practices.
# Install with uv (recommended)
uv sync
# Or install in your current environment
uv pip install -e .import asyncio
from scientific_writer import generate_paper
async def main():
async for update in generate_paper("Create a Nature paper on CRISPR"):
if update["type"] == "text":
print(update["content"], end="", flush=True)
elif update["type"] == "progress":
print(f"[{update['stage']}] {update['message']}")
elif update["type"] == "result":
print(f"PDF: {update['files']['pdf_final']}")
asyncio.run(main())Asynchronous generator that creates a scientific paper and yields progress updates.
Signature:
from typing import AsyncGenerator, Dict, Any, Optional, List, Literal
async def generate_paper(
query: str,
output_dir: Optional[str] = None,
api_key: Optional[str] = None,
model: Optional[str] = None,
effort_level: Literal["low", "medium", "high"] = "medium",
data_files: Optional[List[str]] = None,
cwd: Optional[str] = None,
track_token_usage: bool = False,
auto_continue: bool = True,
permission_mode: str = "bypassPermissions",
max_turns: int = 500,
max_budget_usd: Optional[float] = None,
max_auto_continuations: int = 1,
skills: List[str] | Literal["all"] | None = "all",
) -> AsyncGenerator[Dict[str, Any], None]Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query |
str |
Yes | - | The paper generation request (e.g., "Create a Nature paper on CRISPR") |
output_dir |
str |
No | None |
Custom output root. Relative paths resolve against cwd; defaults to cwd/writing_outputs |
api_key |
str |
No | None |
Anthropic API key. Defaults to ANTHROPIC_API_KEY env var |
model |
str |
No | None |
Explicit Claude model to use. If provided, overrides effort_level; otherwise the model is resolved from effort_level |
effort_level |
"low" | "medium" | "high" |
No | "medium" |
Native SDK reasoning effort and default model tier: low = Claude Haiku 4.5; medium/high = Claude Opus 4.8 |
data_files |
List[str] |
No | None |
List of file paths to include in the paper |
cwd |
str |
No | None |
Working directory. Defaults to the current working directory |
track_token_usage |
bool |
No | False |
If True, track and return token usage in the final result |
auto_continue |
bool |
No | True |
Requests a bounded final completion-verification pass; can be overridden with SCIENTIFIC_WRITER_AUTO_CONTINUE |
permission_mode |
str |
No | "bypassPermissions" |
SDK permission mode; autonomous compatibility default, configurable for safer integrations |
max_turns |
int |
No | 500 |
Maximum SDK turns per request |
max_budget_usd |
float |
No | None |
Optional SDK-enforced spend ceiling |
max_auto_continuations |
int |
No | 1 |
Maximum completion-verification continuations |
skills |
List[str] | "all" | None |
No | "all" |
Project skills exposed through the SDK |
Returns:
An async generator that yields:
- Text updates (
type="text") as assistant text streams - Progress updates (
type="progress") during execution - Final result (
type="result") with comprehensive document information
Example:
import asyncio
from scientific_writer import generate_paper
async def example():
async for update in generate_paper(
query="Create a NeurIPS paper on transformers",
output_dir="./my_papers",
data_files=["results.csv", "figure.png"],
):
if update["type"] == "text":
print(update["content"], end="", flush=True)
elif update["type"] == "progress":
print(f"[{update['stage']}] {update['message']}")
elif update["type"] == "result":
print(f"Done! PDF: {update['files']['pdf_final']}")
asyncio.run(example())Live assistant text emitted while a document is generated:
{
"type": "text",
"content": str,
}Progress information yielded during paper generation.
Fields:
{
"type": "progress",
"timestamp": str, # ISO 8601 timestamp
"message": str, # Progress message
"stage": str, # Current stage (see stages below)
"details": dict | None # Optional additional context (tool name, files, etc.)
}Stages:
initialization- Setting up paper generationplanning- Planning structure and requirementsresearch- Conducting literature researchwriting- Writing paper sectionscompilation- Compiling LaTeX to PDFcomplete- Finalizing and scanning results
Comprehensive final result with all paper information.
Fields:
{
"type": "result",
"status": str, # "success" | "partial" | "failed"
"paper_directory": str, # Full path to paper directory
"paper_name": str, # Paper directory name
"metadata": PaperMetadata, # Paper metadata
"files": PaperFiles, # All generated files
"citations": dict, # Citation information
"figures_count": int, # Number of figures
"compilation_success": bool, # Whether PDF was generated
"errors": List[str], # Any error messages
"token_usage": TokenUsage | None # Token usage (when track_token_usage=True)
}Status Values:
success- At least one final document artifact was generatedpartial- Draft artifacts exist, but no final artifact was producedfailed- No document artifact was produced (seeerrors)
Metadata about the generated paper.
Fields:
{
"title": Optional[str], # Extracted paper title
"created_at": str, # ISO 8601 timestamp
"topic": str, # Topic extracted from directory name
"word_count": Optional[int] # Estimated word count
}Paths to all generated paper files.
Fields:
{
"pdf_final": Optional[str], # Final PDF path
"tex_final": Optional[str], # Final TeX source path
"pdf_drafts": List[str], # List of draft PDF paths
"tex_drafts": List[str], # List of draft TeX paths
"bibliography": Optional[str], # BibTeX file path
"figures": List[str], # List of figure file paths
"data": List[str], # List of data file paths
"sources": List[str], # Saved research and context files
"final_artifacts": List[str], # Generic PDF/DOCX/PPTX/MD/PNG/etc. outputs
"draft_artifacts": List[str], # Generic draft outputs
"artifacts": List[str], # Complete recursive artifact inventory
"progress_log": Optional[str], # progress.md path
"summary": Optional[str] # SUMMARY.md path
}Token usage statistics. Only present when track_token_usage=True.
Fields:
{
"input_tokens": int, # Total input tokens consumed
"output_tokens": int, # Total output tokens generated
"total_tokens": int, # Sum of input + output tokens
"cache_creation_input_tokens": int, # Tokens used for cache creation
"cache_read_input_tokens": int # Tokens read from cache
}Example:
async for update in generate_paper("Create a paper", track_token_usage=True):
if update["type"] == "result":
if "token_usage" in update:
usage = update["token_usage"]
print(f"Input: {usage['input_tokens']:,} tokens")
print(f"Output: {usage['output_tokens']:,} tokens")
print(f"Total: {usage['total_tokens']:,} tokens")import asyncio
from scientific_writer import generate_paper
async def create_paper():
query = "Create a Nature paper on quantum computing"
async for update in generate_paper(query):
if update["type"] == "text":
print(update["content"], end="")
elif update["type"] == "progress":
print(f"Progress: {update['message']}")
elif update["type"] == "result":
if update["status"] == "success":
print(f"Success! PDF: {update['files']['pdf_final']}")
else:
print(f"Failed: {update['errors']}")
asyncio.run(create_paper())async def track_progress():
async for update in generate_paper("Create a paper on ML"):
if update["type"] == "progress":
# Show stage-based progress
stage_icons = {
"initialization": "🔧",
"planning": "📋",
"research": "🔍",
"writing": "✍️",
"compilation": "📦",
"complete": "✅"
}
icon = stage_icons.get(update["stage"], "⏳")
print(f"{icon} [{update['stage']:12}] {update['message']}")
elif update["type"] == "result":
print(f"\n✅ Complete! PDF: {update['files']['pdf_final']}")Every call creates one unique project directory beneath the resolved output root.
Relative output paths are anchored to cwd, not the caller process directory.
async def custom_directory():
async for update in generate_paper(
"Create a conference paper",
output_dir="./my_research/papers"
):
if update["type"] == "result":
print(f"Paper saved to: {update['paper_directory']}")async def with_data_files():
data_files = [
"./experiment_results.csv",
"./figures/performance_graph.png",
"./appendix_data.json"
]
async for update in generate_paper(
"Create a paper analyzing the experimental results",
data_files=data_files
):
if update["type"] == "result":
print(f"Included {len(data_files)} data files")
print(f"Result has {update['figures_count']} figures")import json
async def save_to_json():
result = None
async for update in generate_paper("Create a paper"):
if update["type"] == "result":
result = update
if result:
with open("paper_result.json", "w") as f:
json.dump(result, f, indent=2)
print("Result saved to paper_result.json")async def with_error_handling():
try:
async for update in generate_paper("Create a paper"):
if update["type"] == "text":
print(update["content"], end="")
elif update["type"] == "progress":
print(f"[{update['stage']}] {update['message']}")
elif update["type"] == "result":
if update["status"] == "failed":
print("Generation failed!")
for error in update["errors"]:
print(f" Error: {error}")
elif update["status"] == "partial":
print("Partial success")
print(f" Drafts: {update['files']['draft_artifacts']}")
else:
print("Success!")
except ValueError as e:
print(f"Configuration error: {e}")
except Exception as e:
print(f"Unexpected error: {e}")async def with_custom_api_key():
# Override ANTHROPIC_API_KEY environment variable
async for update in generate_paper(
"Create a paper",
api_key="sk-ant-your-api-key-here"
):
# Process updates...
passasync def list_all_files():
async for update in generate_paper("Create a paper"):
if update["type"] == "result":
files = update["files"]
print("Generated files:")
print(f" PDF: {files['pdf_final']}")
print(f" TeX: {files['tex_final']}")
print(f" Bibliography: {files['bibliography']}")
print(f"\nDrafts ({len(files['pdf_drafts'])} versions):")
for draft in files['pdf_drafts']:
print(f" - {draft}")
print(f"\nFigures ({len(files['figures'])} files):")
for fig in files['figures']:
print(f" - {fig}")
print(f"\nData files ({len(files['data'])} files):")
for data in files['data']:
print(f" - {data}")| Variable | Required | Description |
|---|---|---|
ANTHROPIC_API_KEY |
Yes* | Your Anthropic API key for Scientific-Writer |
PARALLEL_API_KEY |
For research | Alternative to parallel-cli login; enables Parallel Search, Extract, Research, and optional explicit Chat |
OPENROUTER_API_KEY |
No | Optional; used by the AI image generation skills (generate-image, scientific-schematics, scientific-slides, infographics, and markitdown AI features) |
NCBI_API_KEY / NCBI_EMAIL |
No | Optional; higher-rate PubMed lookups in literature-review scripts |
* Can be overridden by passing api_key parameter to generate_paper()
When PARALLEL_API_KEY is set, the system gains access to real-time research capabilities:
- Live internet search during paper generation
- Recent publications and preprints
- Fact verification with current data
- Citation discovery for latest research
The research lookup is automatically invoked when needed - you don't need to explicitly request it.
In addition to research lookup, the system includes Claude's native WebSearch tool as a fallback for:
- Current events and general information
- Non-academic sources (news, blogs, documentation)
- Real-time information that may not be in academic databases
Parallel-based research lookup and web search are the primary tools; native WebSearch is only used as a last resort when they are unavailable.
Setup:
# Add to your .env file
echo "PARALLEL_API_KEY=your_key_here" >> .envExample usage:
# Will automatically use research lookup to find recent papers
async for update in generate_paper(
"Create a paper on recent advances in quantum computing (2024)"
):
passThe API handles errors gracefully:
- Configuration errors (missing API key): yields a result with
status="failed" - Generation errors: captured in the
errorsfield of the result - Partial failures: drafts exist but no final artifact ->
status="partial"
-
Always check update type:
if update["type"] == "text": # Handle streamed assistant text elif update["type"] == "progress": # Handle progress elif update["type"] == "result": # Handle final result
-
Check status before accessing files:
if update["status"] == "success": pdf_path = update["files"]["pdf_final"]
-
Handle both success and failure:
if update["status"] == "failed": print(f"Errors: {update['errors']}") elif update["status"] == "partial": print(f"Drafts only: {update['files']['draft_artifacts']}") else: print("Success!")
-
Use async context properly:
import asyncio asyncio.run(main()) # For scripts
-
Save important results:
import json with open("result.json", "w") as f: json.dump(update, f, indent=2)
The API automatically processes data files and organizes them appropriately:
async for update in generate_paper(
query="Analyze experimental results",
data_files=[
"./results.csv", # → copied to data/
"./performance_plot.png", # → copied to figures/
"./supplementary.json" # → copied to data/
]
):
if update["type"] == "result":
# Files are available in the paper directory
data_files = update["files"]["data"]
figures = update["files"]["figures"]Note: Original files are preserved in both API and CLI modes. CLI users can opt into inbox-style deletion with --consume-inputs.
The CLI automatically detects references to existing papers:
# CLI automatically tracks context
> Create a Nature paper on CRISPR
# Creates new paper
> Add a methods section
# Continues editing the CRISPR paper
> Find the acoustics paper
# Switches to the acoustics paper
> new paper on quantum computing
# Explicitly starts a new paperThis feature is CLI-specific because the API is stateless. Each generate_paper() call creates an invocation-owned project directory.
Control where papers are saved:
# Custom output directory
async for update in generate_paper(
query="Create a paper",
output_dir="~/my_research/papers"
):
pass
# Custom working directory
async for update in generate_paper(
query="Create a paper",
cwd="/path/to/project",
output_dir="./outputs"
):
passeffort_level configures both the SDK's native reasoning effort and the default model tier:
| Effort level | Model |
|---|---|
low |
claude-haiku-4-5 (fastest, most economical) |
medium (default) |
claude-opus-4-8 (balanced, premium) |
high |
claude-opus-4-8 with high SDK reasoning effort |
# Choose a model via effort level
async for update in generate_paper(
query="Create a paper",
effort_level="high"
):
pass
# Or pass an explicit model, which overrides effort_level
async for update in generate_paper(
query="Create a paper",
model="claude-opus-4-8"
):
passLong-running autonomous jobs can be bounded explicitly:
async for update in generate_paper(
query="Create a systematic review",
permission_mode="acceptEdits",
max_turns=120,
max_budget_usd=25.0,
max_auto_continuations=1,
):
passThe compatibility default is permission_mode="bypassPermissions" because document
generation invokes local compilation and research commands. Use a stricter mode when
your host integration can handle permission decisions.
Track token consumption for cost monitoring and usage analysis:
async for update in generate_paper(
query="Create a paper on quantum computing",
track_token_usage=True
):
if update["type"] == "result":
if "token_usage" in update:
usage = update["token_usage"]
print(f"Token Usage Summary:")
print(f" Input tokens: {usage['input_tokens']:,}")
print(f" Output tokens: {usage['output_tokens']:,}")
print(f" Total tokens: {usage['total_tokens']:,}")
# Cache statistics (if applicable)
if usage.get('cache_read_input_tokens', 0) > 0:
print(f" Cache reads: {usage['cache_read_input_tokens']:,}")Notes:
- Token usage is returned silently (not printed to terminal)
- Available in the final result as a dictionary
- Also included in error results when tracking is enabled
- Useful for cost estimation and monitoring API usage
The API automatically extracts metadata from generated papers:
async for update in generate_paper(query):
if update["type"] == "result":
# Extracted metadata
title = update["metadata"]["title"] # From \title{} in LaTeX
word_count = update["metadata"]["word_count"] # Estimated from TeX
created_at = update["metadata"]["created_at"] # ISO 8601 timestamp
topic = update["metadata"]["topic"] # From directory name
# Citation information
citation_count = update["citations"]["count"] # From .bib file
citation_style = update["citations"]["style"] # BibTeX style
bib_file = update["citations"]["file"] # Path to .bibdef format_stage(stage: str) -> str:
"""Format stage name with icon."""
icons = {
"initialization": "🔧",
"planning": "📋",
"research": "🔍",
"writing": "✍️",
"compilation": "📦",
"complete": "✅"
}
return f"{icons.get(stage, '⏳')} {stage}"
async for update in generate_paper(query):
if update["type"] == "progress":
print(f"\r{format_stage(update['stage'])}: {update['message']}", end="")
#### Stage-Based Updates
```python
stage_emojis = {
"initialization": "🔧",
"planning": "📋",
"research": "🔍",
"writing": "✍️",
"compilation": "📦",
"complete": "✅"
}
async for update in generate_paper(query):
if update["type"] == "progress":
emoji = stage_emojis.get(update["stage"], "⏳")
print(f"{emoji} [{update['stage']}] {update['message']}")import json
from datetime import datetime
log_file = "paper_generation.log"
async for update in generate_paper(query):
# Log all updates
with open(log_file, "a") as f:
f.write(json.dumps(update) + "\n")
if update["type"] == "progress":
print(f"[{update['stage']}] {update['message']}")Generate multiple papers in sequence or parallel:
import asyncio
# Sequential generation
async def generate_multiple_sequential():
papers = [
"Create a paper on quantum computing",
"Create a paper on machine learning",
"Create a paper on climate change"
]
results = []
for query in papers:
async for update in generate_paper(query):
if update["type"] == "result":
results.append(update)
return results
# Parallel generation (advanced)
async def generate_multiple_parallel():
async def generate_one(query):
async for update in generate_paper(query):
if update["type"] == "result":
return update
papers = [
"Create a paper on quantum computing",
"Create a paper on machine learning",
"Create a paper on climate change"
]
results = await asyncio.gather(*[generate_one(q) for q in papers])
return results- README.md - Overview and quick start
- FEATURES.md - Complete features guide
- TROUBLESHOOTING.md - Troubleshooting issues
- example_api_usage.py - Complete code examples